blob: 9fbff72f5ee71efee5705d804c6ab0714d76405a (
plain)
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
|
/* Grey */
/* Tan */
/* Rust */
/* Teal */
/* Muted Green */
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
background-size: cover;
background-repeat: no-repeat;
font-family: sans-serif;
}
.landing-page {
height: 100vh;
width: 100%;
background-color: #DDD1C7;
}
.landing-page .menu-container {
position: fixed;
top: 0;
left: 0;
height: 100vh;
width: 100%;
z-index: 5;
opacity: 1;
transition: opacity 1500ms;
display: flex;
justify-content: center;
align-items: center;
}
.landing-page .menu-container .menu-wrapper {
list-style: none;
}
.landing-page .menu-container .menu-wrapper li {
margin: 10px 0;
display: flex;
justify-content: left;
}
.landing-page .menu-container .menu-wrapper li a {
text-decoration: none;
letter-spacing: 5px;
font-weight: 700;
font-size: 15vmin;
color: rgba(255, 255, 255, 0);
-webkit-text-stroke: 1.4px #353535;
transition-duration: 200ms;
}
.landing-page .menu-container .menu-wrapper li a:hover {
color: #353535;
-webkit-text-stroke: 0px #353535;
}
.landing-page .menu-container .menu-wrapper li span {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 68vmin;
font-weight: 900;
color: rgba(0, 0, 0, 0.2);
}
/*# sourceMappingURL=styles.css.map */
|