-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
143 lines (127 loc) · 2.73 KB
/
styles.css
File metadata and controls
143 lines (127 loc) · 2.73 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Sans:ital,wght@0,100..800;1,100..800&display=swap');
@import url('https://fonts.googleapis.com/icon?family=Material+Icons');
body {
margin: 0;
display: flex;
height: 100vh;
background-color: black;
color: white;
font-family: 'Ubuntu Sans', sans-serif;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#loadingScreen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
z-index: 50;
display: flex;
justify-content: center;
align-items: center;
opacity: 1;
transition: opacity 1s ease;
}
.spinner {
border: 8px solid rgba(255, 255, 255, 0.2);
border-top: 8px solid #2253a2;
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.sidebar {
padding: 0;
margin: 0;
width: 70px;
background: linear-gradient(to bottom, #2253a2, black);
position: fixed;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
z-index: 25;
}
.sidebar a {
color: black;
display: flex;
justify-content: center;
align-items: center;
height: 70px;
width: 70px;
transition: transform 0.3s, color 0.3s;
text-decoration: none;
}
.sidebar a i {
font-size: 30px;
}
.sidebar a:hover {
color: white;
transform: scale(1.2);
}
.sidebar a.active {
color: white;
transform: scale(1.2) translateY(-5px) rotate(15deg);
}
.top-menu {
position: fixed;
top: 0;
left: 90px;
right: 0;
padding: 0 20px;
z-index: 23;
}
.top-menu a {
color: white;
padding: 40px 30px;
text-decoration: none;
font-family: 'Ubuntu Sans', sans-serif;
font-size: 16px;
display: inline-block;
opacity: 0.5;
transition: opacity 0.3s;
}
.top-menu a:hover {
opacity: 1.0;
}
.top-menu a.active {
opacity: 1.0;
}
.blackcover {
position: fixed;
left: -70px;
top: 5%;
width: 230px;
height: 100vh;
background-color: black;
z-index: 22;
filter: blur(10px);
}
.codes {
position: fixed;
top: 40%;
left: 170px;
color: white;
font-size: 50px;
font-weight: 900;
z-index: 21;
opacity: 1;
transition: opacity 0.2s ease, left 0.5s ease;
width: 80%;
}
.codes img {
font-size: 50px;
font-weight: 900;
width: 80px;
position: absolute;
bottom: -10px;
margin-left: 5px;
}