-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (90 loc) · 1.5 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
html {
background-color: #000;
overflow: hidden;
color: white;
font-family: "Poppins", sans-serif;
}
#webgl {
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
nav {
z-index: 2;
position: relative;
padding: 2rem 3rem;
display: flex;
justify-content: space-between;
}
nav a {
text-decoration: none;
color: #fff;
font-weight: 600;
}
nav ul {
list-style: none;
display: flex;
gap: 4rem;
}
.title {
z-index: 2;
position: absolute;
left: 50%;
top: 90%;
transform: translate(-50%, -90%);
font-size: 3rem;
}
.social {
z-index: 2;
position: absolute;
left: 50%;
top: 100%;
transform: translate(-50%, -100%);
padding-bottom: 2rem;
}
div ul {
list-style: none;
display: flex;
justify-content: center;
align-self: center;
gap: 4rem;
}
div ul a {
color: #fff;
text-decoration: none;
font-size: 1rem;
}
.sl-img {
width: 20px;
height: 20px;
color: #fff;
margin-right: 0.4rem;
position: absolute;
left: 50%;
bottom: 61%;
}
.sl-img--left {
left: -15%;
}
/**********************************/
/* BELOW 1344px (Smaller desktops) */
/*********************************/
@media (max-width: 84rem) {
}
/**********************************/
/* BELOW 1200px (Landscape Tablets) */
@media (max-width: 75em) {
}
/*********************************/
/**********************************/
/* BELOW 944px (Portrait Tablets) */
/*********************************/
@media (max-width: 59em) {
}