-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
60 lines (50 loc) · 970 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
58
59
60
body {
margin: 0;
height: 100vh;
font-family: 'Open Sans', sans-serif;
display: flex;
flex-direction: column;
justify-content: space-between;
color: #454545;
}
header {
text-align: center;
padding: 1em;
text-transform: uppercase;
font-weight: 700;
font-size: 0.7em;
}
main {
text-align: center;
}
#billboard h1 {
color: #FF6F59;
font-size: 4em;
font-weight: 700;
margin-bottom: 0.3em;
}
#billboard h2 {
font-size: 1.8em;
font-weight: 300;
margin-bottom: 2.5em;
}
#contact a {
color: #FF6F59;
text-decoration: none;
padding: 0.5em 1em;
border-radius: 0.4em;
border-color: #FF6F59;
border-width: 1px;
border-style: solid;
transition: background-color 0.3s ease, color 0.3s ease;
}
#contact a:hover {
background-color: #FF6F59;
color: white;
}
footer {
font-size: 0.8em;
padding: 1.5em;
font-weight: 100;
text-align: center;
}