-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadmin.css
85 lines (81 loc) · 1.58 KB
/
admin.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.table {
border-radius: 8px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
padding: 15px;
width: 80%;
margin: 5% 0% 5% 10%;
}
.table > h1 {
text-align: center;
font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.t1 {
margin: 40px 0px 40px 100px;
}
.t1 > thead th {
padding: 15px 70px;
border-radius: 5px;
background-color: teal;
color: wheat;
font-style: oblique;
}
#tboady {
border: 1px solid red;
}
#tbody tr {
padding: 15px 70px;
border-radius: 4px;
font-style: oblique;
}
#tbody :nth-child(1) {
font-size: 20px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
margin: 3px 0px 3px 20px;
padding: 15px;
width: 150px;
height: 200px;
}
#tbody :nth-child(2) {
text-align: center;
font-size: 20px;
width: 150px;
height: 190px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
#tbody :nth-child(3) {
font-weight: bold;
text-align: center;
font-size: 20px;
width: 150px;
height: 190px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
}
#tbody :nth-child(4) {
font-weight: bold;
text-align: center;
color: green;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
width: 150px;
height: 190px;
}
#tbody :nth-child(5) {
color: red;
font-size: 20px;
font-weight: bold;
text-align: center;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
tr:nth-child(even) {
background-color: #d6eeee;
}
#tbody :nth-child(4):hover {
cursor: pointer;
}
#tbody :nth-child(5):hover {
cursor: pointer;
}