-
Notifications
You must be signed in to change notification settings - Fork 0
/
AdminUI.css
105 lines (87 loc) · 1.66 KB
/
AdminUI.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
.top-level-container {
padding:30px;
}
.search-bar {
width:40%;
min-width: 200px;
max-width: 500px;
margin-bottom: 20px;
border-color: lightblue;
border-width:4px;
border-style: solid;
}
.search-bar:focus {
outline: none;
}
table {
border-collapse: collapse;
width:90%
}
thead th {
border-style:solid;
border-width:1px;
border-color:#f0f0f0;
padding:10px;
text-align: left;
background-color: lightblue;
}
tbody td{
border-style:solid;
border-width:1px;
border-color:#f0f0f0;
padding:10px;
text-align: left;
}
i {
height:30px;
width:30px;
margin-left:5px;
}
.delete-icon,.cancel-icon{
color: red;
}
.bottom-section {
display:flex;
align-items: center;
margin-top: 20px;
}
.page-navigation-buttons-container {
display:flex;
justify-content: center;
align-items: center;
width:80%;
}
.numbered-navigation-buttons-container {
display:flex;
justify-content: center;
align-items: center;
}
.navigation-button {
margin:0 10px 0 10px;
height:40px;
width:40px;
border-radius: 80px;
background-color: #f0f0f0;
border: none;
text-align: center;
}
.navigation-button-selected{
background-color: lightblue;
}
.navigation-button:focus {
outline: none;
}
.delete-button {
background-color: red;
color:white;
border-style:solid;
border-width: 0;
cursor: pointer;
border-radius: 6px;
padding:6px;
}
.info-message {
color:yellow;
text-align: center;
display:none;
}