-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstyle.css
69 lines (58 loc) · 913 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
61
62
63
64
65
66
67
68
69
html {
margin: 0;
}
body {
margin: 0;
font-family: 'Roboto', sans-serif;
font-weight: 300;
}
h1 {
margin: 0;
padding: 12rem 0 0 0;
font-size: 8rem;
font-weight: 700;
font-family: 'Montserrat'
}
h3 {
font-size: 1.75rem;
font-weight: 300;
}
a {
color: #ffffff;
text-decoration: none;
}
a.button {
font-size: 1.5rem;
font-weight: 700;
padding: 0.5rem 2rem;
border-radius: 2rem;
color: #ef473a;
background-color: #ffffff;
}
a.button:hover {
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
}
a.link {
padding-left: 2rem;
font-weight: 400;
}
.navbar {
position: absolute;
padding: 2rem;
margin-left: 20%;
width: 60%;
text-align: right;
}
.hero-container {
width: 100%;
height: 100vh;
text-align: center;
color: #ffffff;
background-image: radial-gradient(circle, #ef473a 0, #cb2d3e 100%);
}
.hero-container>h3 {
margin: 1rem 0 3rem 0;
}
.hero-container>p {
margin-top: 10rem;
}