-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoverview.css
147 lines (125 loc) · 3.07 KB
/
overview.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
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
144
145
146
147
:root {
--d: 2500ms;
--bg: #111119;
--btn-hvr: #fa2c93;
--ftr: #131327;
}
html{
scroll-behavior: smooth; /* Scrolling more Smooth */
}
a{
text-decoration: none; /* No more underlined Links */
}
body{
overflow-x: hidden; /* Hide horizontal scroll bars */
background-color: var(--bg);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; /* cool font */
width: 100vw; /* width of full screen */
height: 100vh; /* height of full screen i think */
color: white
}
.loader-container{
display: flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
}
.loader {
width: 37.5vh;
height: 75vh;
display: grid;
color: #fff;
background:
linear-gradient(currentColor 0 0) top/100% 2px,
radial-gradient(farthest-side at top, #0000 calc(100% - 2px),currentColor calc(100% - 1px) ,#0000) top,
linear-gradient(currentColor 0 0) bottom/100% 2px,
radial-gradient(farthest-side at bottom, #0000 calc(100% - 2px),currentColor calc(100% - 1px) ,#0000) bottom;
background-size: 100% 1px,100% 50%;
background-repeat: no-repeat;
animation: l18 16s infinite linear;
}
.loader::before, .loader::after {
content: "";
grid-area: 1/1;
background: inherit;
border: inherit;
animation: inherit;
}
.loader::after {
animation-duration: 8s;
}
@keyframes l18 {
100% {transform: rotate(1turn)}
}
.buttons-container{
display: flex;
flex-wrap: wrap; /* wraps flex-elements if overflow */
gap: 10vw;
max-width: 100vw;
margin-left: 5vw;
margin-right: 5vw;
justify-content: center;
align-items: center;
}
.button{
transition: all 0.5s ease-in-out;
display: flex;
color: white;
font-size: 36px;
font-weight: bold;
justify-content: center;
width: 40vh;
height: 14vh;
align-items: center;
background-color: var(--btn);
border-style: solid;
border-color: white;
border-radius: 3.5vh; /* rounds the edges of borders */
border-width: 2px;
box-shadow: 0 6px 8px gray;
text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
.button:hover{
transition: all 0.5s ease-in-out;
transform: translateY(7px);
background-color: var(--btn-hvr);
box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.5);
}
.footer {
margin-top: 10%;
bottom: 0;
left: 100px;
width: 100vw;
height: 120px;
z-index: 10;
background-color: var(--ftr);
border-top: #fa2c93;
border-left: transparent;
border-right: transparent;
border-bottom: transparent;
border-style: solid;
border-width: 1px;
}
.footer-text{
text-align: center;
color: white;
text-shadow: 0px 0px 20px black;
}
.hrefs{
display: flex;
align-items: center;
justify-content: center;
margin-left: 20vw;
margin-right: 20vw;
gap: 12.5vw;
}
.hrefs a{
color: var(--btn-hvr);
font-weight: bold;
transition: all 0.5s ease;
}
.hrefs:hover a{
color: #ff74ba;
transition: all 0.5s ease;
}