-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (65 loc) · 1.08 KB
/
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
@import url('https://fonts.googleapis.com/css?family=Quicksand');
html, body {
margin: 0;
font-family: 'Quicksand', sans-serif;
}
body {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
header {
padding: 0 30px;
display: flex;
flex-direction: column;
align-items: center;
text-transform: uppercase;
}
header a {
padding: 30px 0;
text-decoration: none;
color: #333;
}
a[href="/"] h1 {
margin: 0;
}
header nav {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
header nav a {
margin: auto;
margin-left: 30px;
}
header nav a:hover {
color: #555;
text-decoration: underline;
}
main {
height: 100%;
padding: 30px;
overflow-x: auto;
}
iframe {
display: block;
margin: auto;
min-width: 1200px;
width: 100%;
height: 100%;
}
article {
margin-bottom: 60px;
}
@media all and (min-width: 786px) {
header {
flex-direction: row;
justify-content: space-between;
}
header, main {
max-width: 1200px;
margin: auto;
}
}