-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.scss
94 lines (84 loc) · 1.38 KB
/
main.scss
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
85
86
87
88
89
90
91
92
93
94
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100vw;
height: 100vh;
overflow: hidden;
background-color: #a0a0a0;
}
nav {
position: fixed;
top: 0;
width: 100%;
display: flex;
justify-content: space-between;
padding: 1rem;
div {
display: flex;
padding: 1rem;
gap: 10rem;
a {
text-decoration: none;
cursor: pointer;
color: #000;
font-family: "Luckiest Guy", cursive;
}
}
}
.header {
width: 100%;
display: flex;
justify-content: space-between;
padding: 2em;
padding-top: 5em;
overflow: hidden;
.h1 {
position: relative;
font-family: "Luckiest Guy", cursive;
font-size: 25vw;
color: #1a1a1a;
line-height: 1.125;
}
}
.hero {
position: relative;
width: calc(100vw - 4em);
height: 100%;
margin: 0 auto;
border-radius: 10px;
border: 4px solid #1a1a1a;
}
img {
width: 100%;
height: 100%;
// padding: 10px;
object-fit: cover;
}
.overlay {
position: fixed;
width: 100vw;
height: 100vh;
z-index: 2;
display: flex;
.bar {
width: 10vw;
height: 105vh;
background-color: #1a1a1a;
}
}
.counter {
position: fixed;
width: 100%;
height: 100%;
display: flex;
justify-content: flex-end;
align-items: flex-end;
z-index: 10000;
color: #bcbcc4;
padding: 0.05em 0.3em;
font-size: 20vw;
font-family: "Luckiest Guy", cursive;
}