-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathstyles.css
111 lines (97 loc) · 2.07 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
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
h1 {
margin-top: 1.2em;
}
.setting-item-child {
background-color: var(--background-secondary);
padding-left: 1em;
padding-right: 1em;
border-top: 0.5px solid var(--background-primary);
/* animation: child-enter 0.3s ease; */
}
.setting-item-child textarea, .setting-item-child input {
background-color: var(--background-primary);
}
@keyframes child-enter {
0% {
opacity: 0;
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.wide-text-area .setting-item-info, .wide-text-area .setting-item-description {
flex: 0.3 1 auto;
}
.block-control-item {
flex-direction: column;
}
.block-control-item .setting-item-control, .block-control-item .setting-item-info {
margin-top: 0.5em;
width: 100%;
margin-right: auto;
}
.height10-text-area textarea {
width: 100%;
height: 10em;
}
.height20-text-area textarea {
width: 100%;
height: 20em;
}
.loading-container {
display: flex;
align-items: center;
}
.loading-icon {
display: inline-block;
border: 2px solid rgba(0, 0, 0, 0.1);
border-left-color: var(--text-muted);
border-top-color: var(--text-accent);
border-radius: 50%;
width: 24px;
height: 24px;
animation: spin 1s linear infinite;
margin-right: 8px;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.checkmark-container {
display: flex;
align-items: center;
}
.checkmark {
width: 24px;
height: 24px;
position: relative;
margin-right: 8px;
}
.checkmark:after {
content: '';
position: absolute;
width: 10px;
height: 3px;
background-color: var(--text-accent);
transform-origin: left top;
transform: rotate(45deg);
top: 8px;
left: 6px;
}
.checkmark:before {
content: '';
position: absolute;
width: 5px;
height: 3px;
background-color: var(--text-accent);
transform-origin: left bottom;
transform: rotate(-45deg);
bottom: 8px;
left: 11px;
}