-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
109 lines (94 loc) · 1.71 KB
/
index.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
106
107
108
109
* {
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
background-color: #f9f9f9;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
margin-bottom: 1rem;
}
.nav-admin {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #333;
color: white;
height: 80px;
padding: 0 2rem;
position: sticky;
top: 0;
z-index: 100;
}
.ggcl {
font-size: 3rem;
font-weight: bold;
}
.nav-admin a {
color: white;
text-decoration: none;
}
.nav-admin a:hover {
text-decoration: underline;
}
.table {
width: 100%;
margin-bottom: 1rem;
background-color: #fff;
color: #333;
border: 1px solid rgba(0, 0, 0, 0.1);
}
.table th,
.table td {
text-align: left;
padding: 0.75rem;
vertical-align: top;
border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.table thead th {
vertical-align: bottom;
border-bottom: 2px solid rgba(0, 0, 0, 0.1);
font-weight: bold;
}
.table tbody+tbody {
border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.table-sm th,
.table-sm td {
padding: 0.3rem;
}
.btn {
display: inline-block;
font-weight: 400;
color: #fff;
text-align: center;
vertical-align: middle;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-color: #333;
border: 1px solid transparent;
padding: 0.5rem 1rem;
font-size: 1rem;
line-height: 1.5;
border-radius: 0.25rem;
transition: all 0.2s ease-in-out;
}
.btn:hover {
background-color: #666;
border-color: #666;
cursor: pointer;
}
.btn-secondary {
background-color: #666;
border-color: #666;
}