-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (63 loc) · 951 Bytes
/
style.css
File metadata and controls
72 lines (63 loc) · 951 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.slider {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: linear-gradient(to left, #ba7453, #d1a984);
z-index: -1;
}
nav {
display: grid;
grid-template-columns: 10% 1fr 1fr 10%;
min-height: 10vh;
color: white;
align-items: center;
}
#logo {
grid-column: 2/3;
font-size: 24px;
}
.hamburger {
justify-self: end;
}
section {
display: flex;
height: 80vh;
justify-content: center;
align-items: center;
}
.hero {
height: 70%;
width: 100%;
position: relative;
}
.hero img {
width: 100%;
height: 100%;
object-fit: cover;
}
.headline {
position: absolute;
top: 80%;
left: 15%;
font-size: 85px;
transform: translate(-20%, -70%);
color: white;
z-index: 3;
}
.hero::after {
content: "";
background: black;
width: 100%;
height: 100%;
position: absolute;
left: 0;
opacity: 0.3;
top: 0;
}