-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
59 lines (56 loc) · 1.05 KB
/
index.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
/* body {
margin: 2% 2% 0 2%;
font-family: "Dosis", sans-serif;
color: #121213;
font-size: 14px;
line-height: 20px;
} */
.landingpage {
position: relative;
height: 85vh;
padding: 0 5%;
background-color: #c1c3cc;
background-image: linear-gradient(
76deg,
rgba(193, 195, 204, 0.83) 35%,
rgba(193, 195, 204, 0.28) 65%
),
url(https://nuuk-e3eaa.firebaseapp.com/assets/img/slide-2.jpg);
}
.navbar {
display: flex;
justify-content: space-between;
margin: 2% auto 0;
background-color: #fff;
}
.logo {
height: 110px;
padding: 0 35px;
background-color: #e47312;
}
.navigation_links {
display: flex;
justify-content: center;
align-items: center;
}
.links {
padding: 31px 14px;
color: #414147;
font-size: 12px;
font-weight: 700;
letter-spacing: 1px;
}
.btn1 {
height: 100%;
margin-left: 20px;
padding: 34px 28px 31px;
background-color: #e47312;
transition: all 300ms ease;
color: #fff;
font-size: 12px;
font-weight: 600;
letter-spacing: 1px;
}
.btn1:hover {
background-color: #e98a38;
}