-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (57 loc) · 926 Bytes
/
style.css
File metadata and controls
69 lines (57 loc) · 926 Bytes
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
* {
margin: 0;
padding: 0;
font: 20px Arial, sans-serif;
}
html, body {
height: 100%;
}
body {
display: flex;
flex-direction: column;
overflow: hidden;
background: #888888;
}
header, footer {
height: 48px;
width: 85%;
margin: auto;
}
header a, footer a {
text-decoration: none;
color: #FFFFFF;
}
header h1 {
float: left;
padding: 10px 12px;
text-align: center;
}
header ul {
float: right;
padding-top: 14px;
}
header li, footer li {
display: inline;
padding: 8px 12px;
}
header li:hover a {
color: gold;
transition: all ease 0.2s;
}
footer ul {
display: flex;
justify-content: center;
}
footer li:hover path {
fill: gold;
transition: all ease 0.2s;
}
.highlight {
color: gold;
font-size: 24px;
}
#main {
flex: 1;
background: url("images/background.png") no-repeat;
background-size: 100%;
}