-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglobal.css
61 lines (56 loc) · 915 Bytes
/
global.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
-webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar {
width: 0px;
}
a {
text-decoration: none;
color: black;
}
body {
background-color: #101010;
}
*:focus {
outline: none;
}
::selection {
color: black;
background-color: yellow;
}
.loading {
opacity: 0.5;
border-radius: 0.8rem;
background-color: #ebeaea;
animation: skelly 600ms infinite alternate;
}
.notLoading {
background: transparent;
}
.text-loading {
width: 100%;
height: clamp(2.25rem, 4.5vw, 4rem);
border-radius: 0.5rem;
animation: skelly 600ms infinite alternate;
}
.heading-loading{
height: 20rem;
width: 6rem;
border-radius: 0.75rem;
animation: skelly 600ms infinite alternate;
}
@keyframes skelly {
0% {
background-color: #414345;
color: #414345;
}
100% {
background-color: #414345be;
color: #414345be;
}
}