-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme.css
73 lines (64 loc) · 1.02 KB
/
theme.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
* { margin: 0; padding: 0; }
body {
font-family: 'Overpass Mono', monospace;
background: #0074d1;
color: #fff;
}
h1, h2, h3 {
padding-bottom: 12px;
}
.content {
margin: 0 auto;
width: 800px;
padding: 20px;
text-align: center;
}
header {
margin-top: 100px;
display: block;
height: 400px;
}
header img {
float: left;
border: 2px solid #fff;
width: 330px;
height: 330px;
}
header .headline {
float: right;
display: block;
width: 430px;
text-align: left;
padding-top: 88px;
}
/* Menu */
header ul {
margin-top: 20px;
}
header ul li {
display: inline-block;
margin-right: 10px;
}
header ul li a {
border: 2px solid #fff;
box-sizing: border-box;
display: inline-block;
padding: 12px;
background: #fff;
color: #0074d1;
text-decoration: none;
}
header ul li a:hover {
color: #fff;
background: inherit;
}
/* Footer */
footer {
/* background: #fff; */
/* color: #0074d1; */
margin-top: 20px;
}
footer .copyleft {
display: inline-block;
transform: rotate(180deg);
}