-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
53 lines (53 loc) · 825 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
body {
margin: 0;
padding: 0;
font-family: Roboto, Arial, sans-serif;
min-height:100%;
background: url("/img/back.jpg");
background-position-x: center;
}
#header {
width: 100%;
background: purple;
color: white;
text-align: center;
}
#content {
background: white;
padding: 0 1em;
max-width: 800px;
margin: 0 auto;
overflow: hidden;
}
#content img, #content svg {
max-width: 100%;
}
#footer {
width: 100%;
height: 3em;
background: black;
color: white;
font-size: 8pt;
text-align: center;
overflow: hidden;
}
#nav {
list-style-type: none;
background-color: darkslateblue;
overflow: hidden;
padding: 0;
margin: 0;
}
#nav li {
float: left;
padding: 16px;
}
#nav a {
color: white;
font-size: 1.5em;
text-decoration: none;
}
#nav li:hover {
background-color: indigo;
text-decoration: underline;
}