-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
77 lines (66 loc) · 931 Bytes
/
main.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
* {
box-sizing: border-box;
}
body {
background: #00ada7;
font-size: 14pt;
margin: 0;
font-family: Dosis, sans-serif;
}
a {
color: #de3961;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
img {
width: 12em;
margin-bottom: .75em;
}
h1 {
color: #a4e570;
font-size: 5em;
margin-bottom: 0;
margin-top: 0;
font-family: Kreon, serif;
font-weight: 400;
line-height: 1em;
}
h2 {
color: #b3eecc;
font-size: 2.4em;
margin-top: -.25em;
font-weight: 400;
}
nav {
background: #ffffdc;
color: #de3961;
position: fixed;
width: 100%;
bottom: 0;
padding: 1.5em 2.5em;
}
ul {
list-style: none;
padding: 0;
margin: 0 auto;
white-space: collapse;
display: flex;
justify-content: space-between;
max-width: 600px;
}
li {
font-size: 1.25em;
display: inline;
font-weight: 500;
}
.welcome {
text-align: center;
margin-top: 6em;
}
@media (max-width: 650px) {
body {
font-size: 10pt;
}
}