-
Notifications
You must be signed in to change notification settings - Fork 15
/
styles.css
86 lines (83 loc) · 1.32 KB
/
styles.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
.horiz_rule {
margin: 0;
}
.container-gdrive-plugin {
display: flex;
width: 100%;
padding: 1rem 0;
justify-content: space-between;
}
.sync_text {
opacity: 0.5;
}
.sync_link {
user-select: all;
font-weight: 400;
}
.sync_icon {
display: flex;
justify-content: center;
align-items: center;
opacity: 0.5;
width: 1rem;
height: 1rem;
animation-name: spin;
animation-duration: 2000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
.sync_icon_still{
opacity: 0.5;
color: rgb(133, 255, 133);
}
.select_inner {
display: flex;
flex-direction: column;
}
.select_innerR {
display: flex;
gap: 1rem;
}
.select_title {
color: var(--text-normal);
font-size: var(--font-ui-medium);
line-height: var(--line-height-tight);
}
.select_subtitle {
color: var(--text-muted);
font-size: var(--font-ui-smaller);
padding-top: var(--size-4-1);
line-height: var(--line-height-tight);
}
@-ms-keyframes spin {
from {
-ms-transform: rotate(0deg);
}
to {
-ms-transform: rotate(360deg);
}
}
@-moz-keyframes spin {
from {
-moz-transform: rotate(0deg);
}
to {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}