-
Notifications
You must be signed in to change notification settings - Fork 0
/
loading.css
51 lines (45 loc) · 1004 Bytes
/
loading.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
.loading {
border-width: 1px;
border-style: solid;
color: var(--color-benthos-blue);
border-color: var(--color-ultramarine-blue);
padding: 1em 2em;
border-radius: 1.5em;
display: inline-block;
/* Rectangle 76 */
/* White */
background: #FFFFFF;
/* Littoral Blue */
border: 1px solid #F0F3FF;
box-sizing: border-box;
/* Soft Drop Shadow */
box-shadow: 0px 4px 32px rgba(109, 108, 144, 0.12);
}
.loading__text {
/* @hidden */
opacity: 0;
font-size: 0;
position: absolute;
width: 0;
height: 0;
}
.loading__dots,
.loading__dots::before,
.loading__dots::after {
content: "";
display: block;
width: 0.375em;
height: 0.375em;
border-radius: 100%;
background-color: var(--color-pelagic-gray);
}
.loading__dots::before {
position: absolute;
transform: translateX(-200%);
background-color: var(--color-salt-marsh-gray);
}
.loading__dots::after {
position: absolute;
transform: translateX(200%);
background-color: var(--color-pelagic-gray);
}