-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
71 lines (58 loc) · 1020 Bytes
/
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
body {
padding: 0;
margin: 0;
overflow: hidden;
}
.logo {
position: absolute;
top: 100px;
left: calc(50% - 150px);
width: 300px;
height: auto;
z-index: 2;
opacity: 0.8;
}
:root {
--main-bg-color: #0e1525;
--primary-color: #1d2333;
}
body {
background-color: var(--main-bg-color);
font-family: 'IBM Plex Sans Condensed';
margin: 0 0;
height: 220vh;
overflow-y: auto;
}
.topBar {
background-color: var(--primary-color);
width: 100vw;
height: 60px;
margin-bottom: 8px;
}
.mainChild {
border-radius: 9px;
background-color: var(--primary-color);
width: 80%;
height: 80%;
position: absolute;
top: 10%;
left: 10%;
}
.hidden {
width: 100%;
background-color: white;
height: calc(220vh - 30px);
position: absolute;
top: 30px;
z-index: 9999;
display: block;
}
.load {
width: 100%;
background-color: white;
position: absolute;
top: 0;
right: 0;
height: 30px;
z-index: 9999;
}