-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
57 lines (50 loc) · 900 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
* {
box-sizing: border-box;
}
html {
height:100%;
margin:0;
padding: 0;
}
body {
color:#555;
margin:0;
text-align: center;
font-family:-apple-system, BlinkMacSystemFont, 'SF UI Text', 'Helvetica Neue', 'Roboto', 'Arial Nova', 'Segoe UI', 'Arial', sans-serif;
min-height:100%;
display:flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
h1 {
color:#222;
font-weight: 300;
font-size: 4em;
}
img.logo {
width:8em;
}
nav.main a {
display:inline-block;
padding:0 1em;
color:#d04;
text-decoration: none;
}
nav.main a:hover {
text-decoration: underline;
}
header {
padding: 3em;
}
.content {
flex:1;
display:flex;
flex-wrap:wrap;
flex-direction: row;
justify-content: center;
align-items: center;
background-color:#eee;
width:100%;
padding:3em;
}