-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (76 loc) · 1.1 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
* {
box-sizing: border-box;
}
html, body, #menu, #contents, #contents-iframe {
margin: 0;
padding: 0;
height: 100%;
color: #DDD;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-size: 20px;
}
hr {
border-color: gray;
}
#menu {
display: inline-block;
width: 15%;
padding: 10px;
}
#contents {
display: inline-block;
width: 84%;
max-width: 1000px;
vertical-align: top;
padding: 10px;
border-top: 0;
border-right: 0;
border-bottom: 0;
}
#menu-iframe {
padding: 10px;
}
body {
background-color: #111;
}
h1 {
font-size: 1.65rem;
}
h2 {
font-size: 1.3rem;
}
h3 {
font-size: 1.15rem;
}
h1, h2, h3, h4, h5 {
margin-top: 0;
font-weight: normal;
font-family: Arial, Helvetica, sans-serif;
color: white;
}
h3 {
font-style: italic;
}
a {
color: white;
font-weight: bold;
text-decoration: none;
color: #ADF;
}
a:hover {
text-decoration: underline;
}
table, td {
border: 2px solid gray;
padding: 5px;
}
td {
background-color: #222;
}
li {
list-style: square;
margin-bottom: 5px;
}
img {
vertical-align: middle;
}