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
|
$white: white;
$black: black;
// gray
$gray-l1: rgba(230, 230, 230, 1);
$gray-l2: rgb(201, 201, 201);
$gray-l3: rgba(87, 87, 87, 1);
// blue
$blue-l1: #cfe2f3;
$blue-l2: #6fa8dc;
$blue-l3: #0b5394;
$blue-l4: #073763;
// view backgrounds
$background-dm: black;
$background-lm: white;
$header-dm: $gray-l3;
$header-lm: $gray-l1;
// border
$standard-border: solid 2px;
// standard shadow
$text-color-dm: $gray-l1;
$text-color-lm: $gray-l3;
// text / font
$title-size: 2rem;
$title-weight: 700;
$h1-size: 15px;
$h1-weight: 700;
$h2-size: 13px;
$h2-weight: 600;
$body-size: 10px;
$body-weight: 400;
// header
$header-height: 40px;
@keyframes skeleton-loading-l3 {
0% {
background-color: rgba(128, 128, 128, 1);
}
100% {
background-color: rgba(128, 128, 128, 0.5);
}
}
@keyframes skeleton-loading-l2 {
0% {
background-color: rgba(182, 182, 182, 1);
}
100% {
background-color: rgba(182, 182, 182, 0.5);
}
}
@keyframes skeleton-loading-l1 {
0% {
background-color: rgba(230, 230, 230, 1);
}
100% {
background-color: rgba(230, 230, 230, 0.5);
}
}
|