-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (73 loc) · 1.42 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Red Rose", sans-serif;
}
body {
background-image: url("assets/img-1.png"),
linear-gradient(rgba(20, 18, 55, 0.737), rgba(20, 18, 55, 0.737));
background-blend-mode: darken;
background-size: cover;
height: 100vh;
}
/* ------------------------------ */
/* ---------- NAVBAR ------------ */
/* ------------------------------ */
.navbar {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-top: 2.2rem;
}
.logo {
margin-left: 2rem;
}
.list {
display: flex;
list-style: none;
}
.list-item {
padding-left: 30px;
color: #ffd000fa;
cursor: pointer;
font-size: 1.3rem;
}
.button-small {
padding: 10px 20px;
border: none;
font-size: 1.5rem;
background-color: #ff6263;
color: #ffffff;
margin-right: 4rem;
cursor: pointer;
}
/* ------------------------------ */
/* ---------- HERO ------------ */
/* ------------------------------ */
.hero-heading {
font-family: "Red+Rose", sans-serif;
margin: 0 14rem;
color: #f7cd2e;
font-weight: 700;
font-size: 6.9rem;
text-align: center;
padding-top: 3rem;
line-height: 1;
}
.button-large {
background-color: #ff6263;
border: none;
padding: 10px 2rem;
color: #ffffff;
margin-left: 38rem;
margin-top: 5rem;
font-size: 1.5rem;
cursor: pointer;
}
.bottom img {
position: relative;
left: 75rem;
bottom: 6rem;
}