-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (71 loc) · 922 Bytes
/
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
@import url("normalize.css");
html, body {
margin: 0;
color: #000;
background-color: #E0B0FF;
}
a {
color: firebrick;
}
code {
background-color: seashell;
}
#container {
margin: 2em;
}
#sidebar {
width: 200px;
float: left;
padding-top: 1em;
}
#sidebar ul {
list-style: none;
list-style-position: outside;
padding: 0;
margin:0;
}
#sidebar li {
list-style-position: outside;
margin-bottom: 0.2em;
}
#sidebar a
, header
, footer
, header a
, footer a {
color: green;
text-decoration: none;
}
#main {
padding: 2em;
overflow: auto;
min-height: 20em;
background-color: white;
}
#main h1 {
margin-top: 0;
padding-top: 0;
}
header {
margin: 0;
font-size: 1.8em;
}
header
{
padding-left: 1em;
}
footer {
text-align: right;
margin-top: 1em;
padding-top: 1em;
}
@media print {
#sidebar {
display: none;
}
#main
, header
, footer{
margin: 0;
padding: 0;
}