-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (76 loc) · 1.27 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
body {
background-color: #1a1a1a;
color: #e0e0e0;
font-family: 'Trebuchet MS', sans-serif;
margin: 0;
padding: 0;
}
h1 {
background-color: #2e2e2e;
color: #c0c0c0;
padding: 20px;
text-align: center;
margin-bottom: 0;
border-bottom: 2px solid #444;
}
h3 {
color: #c0c0c0;
text-align: center;
margin-top: 30px;
}
p {
padding: 0 20px;
line-height: 1.6;
font-size: 16px;
}
a {
color: #66cdaa;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
width: 80%;
margin: 20px auto;
padding: 12px 20px;
font-size: 16px;
border: 1px solid #555;
border-radius: 4px;
background-color: #2e2e2e;
color: #e0e0e0;
}
table {
width: 90%;
margin: 20px auto;
border-collapse: collapse;
background-color: #2e2e2e;
}
th, td {
border: 1px solid #444;
padding: 12px;
text-align: left;
color: #e0e0e0;
}
th {
background-color: #3b3b3b;
font-size: 18px;
}
tr:nth-child(even) {
background-color: #242424;
}
tr:hover {
background-color: #333;
}
@media (max-width: 768px) {
body {
font-size: 14px;
}
#search {
width: 90%;
}
table, th, td {
font-size: 14px;
}
}