-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (82 loc) · 1.15 KB
/
style.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
* {
margin: 0;
margin: 0;
}
body {
background-color: #ffffff;
min-width: 500px;
}
.fixed {
position: fixed;
width: 100%;
}
header {
background-color: #ffffff;
height: 50px;
color: #098ea5;
top: 0%;
text-align: center;
}
header > h2 {
margin-top: 15px;
text-align: center;
font-weight: 100;
display: inline-block;
cursor: pointer;
}
header > h2:hover {
text-decoration: underline;
}
#content {
padding-top: 50px;
}
.loading {
cursor: pointer;
position: absolute;
margin-top: 15px;
left: 90%;
height: 20px;
width: 20px;
}
.gh-btn {
cursor: pointer;
position: absolute;
margin-top: 15px;
left: 80%;
height: 22px;
width: 22px;
}
li {
padding: 15px;
list-style-type: none;
display: block;
min-width: 30px;
}
li:hover {
background-color: #def9fc;
}
li > h3 {
font-weight: 500;
cursor: pointer;
}
li > h3:hover {
text-decoration: underline;
}
li > h5 {
font-weight: 400;
display: inline;
cursor: pointer;
}
li > h5:hover {
text-decoration: underline;
}
.detail {
font-size: 100%;
color: #707070;
}
hr {
border: none;
height: 1px;
color: #098ea5;
background-color: #098ea5;
}