-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (91 loc) · 1.52 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
* {
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
min-height: 1280px;
color: #3b3b3b;
font-size: 24px;
}
p,
h1,
h2,
h3,
h4,
a {
margin: 0;
font-weight: 400;
}
a,
a:visited,
a:hover {
color: teal;
text-decoration: none;
border-bottom: 2px solid currentColor;
}
/* nav {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
-webkit-box-pack: justify;
-ms-flex-pack: justify;
justify-content: space-between;
background: #f3f3f3;
padding: 1rem;
padding-right: 5rem;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
background-color: #000000;
}
.nav__examples {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-align: baseline;
-ms-flex-align: baseline;
align-items: baseline;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
margin-top: 1rem;
}
.nav__examples > * {
margin-right: 0.5rem;
} */
#intro {
max-width: 40rem;
margin: 1rem auto;
}
.intro__hed {
font-size: 2em;
margin: 2rem auto 0.5rem auto;
text-align: center;
}
.intro__dek {
color: #8a8a8a;
text-align: center;
}
#intro {
margin-bottom: 200px;
}
#outro {
height: 600px;
width: 80%;
margin: auto;
margin-top: 80px;
margin-bottom: 80px;
}
@media (min-width: 840px) {
.nav__examples {
margin-top: 0;
margin-left: 2rem;
}
}