-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
79 lines (67 loc) · 1.13 KB
/
main.css
File metadata and controls
79 lines (67 loc) · 1.13 KB
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
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #fafafa;
padding: 20px;
margin: 0;
color: #333333;
text-align: center;
}
h1#heading {
font-size: 2.5em;
border-bottom: 2px solid #ccc;
padding-bottom: 0.3em;
margin-bottom: 20px;
display: inline-block;
}
a {
color: #3366cc;
font-style: italic;
}
li {
padding-bottom: 20px;
}
table {
width: 100%;
}
table:not(#pages-table) {
max-width: 750px;
margin: auto;
}
#pages-table th:nth-child(1) {
width: 20%;
}
#pages-table th:nth-child(2) {
width: 60%;
}
#pages-table th:nth-child(3) {
width: 20%;
}
table, th, td {
border: 1px solid #dddddd;
border-collapse: collapse;
padding: 8px 12px;
}
th {
background-color: #66cfff;
}
tr:hover {
background-color: #e1f0ff;
}
div#bottom {
width: calc(100% - 20px);
position: fixed;
padding: 10px;
bottom: 0px;
left: 0px;
background-color: #fafafa;
}
input#search-bar {
width: calc(100% - 18px);
font-size: 18px;
padding: 8px;
margin-top: 10px;
margin-bottom: 20px;
}
div.wrapper {
overflow: auto;
}