-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
57 lines (56 loc) · 882 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
@import url('https://fonts.googleapis.com/css?family=Noto+Serif|Open+Sans:400,700');
html,
body {
height: 100%;
margin: 0;
padding: 0;
}
body {
font-size: 14px;
font-family: 'Open Sans', sans-serif;
background: #fef6eb;
border: 20px solid #C25B56;
box-sizing: border-box;
color: #525564;
text-align: center;
}
@media (max-width: 480px) {
body {
border-left: none;
border-right: none;
}
}
h1 {
font-family: 'Noto Serif', serif;
margin: 0;
padding: 0;
font-weight: normal;
font-size: 4.4em;
text-transform: uppercase;
}
h3 {
padding: 0;
font-weight: normal;
font-size: 2em;
margin: 0.5em;
}
p {
font-size: 1em;
margin: 1em;
padding: 0;
color: #c25b56;
}
a {
color: #c25b56;
font-weight: 700;
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
header {
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}