-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
/
Copy pathControlPane.css
55 lines (48 loc) · 975 Bytes
/
ControlPane.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
@import "../UI/theme";
.control {
color: var(--textColor);
position: relative;
padding: 20px 0 10px 0;
margin-top: 16px;
& input,
& textarea,
& select {
font-family: 'SFMono-Regular', Consolas, "Liberation Mono", Menlo, Courier, monospace;
display: block;
width: 100%;
padding: 12px;
margin: 0;
border: var(--textFieldBorder);
border-radius: var(--borderRadius);
outline: 0;
box-shadow: none;
background-color: var(--controlBGColor);
font-size: 16px;
color: var(--textColor);
transition: border-color .3s ease;
&:focus,
&:active {
border-color: var(--primaryColor);
}
}
}
.label {
display: block;
color: var(--controlLabelColor);
font-size: 12px;
text-transform: uppercase;
font-weight: 600;
}
.labelWithError {
composes: label;
color: #FF706F;
}
.errors {
list-style-type: none;
font-size: 10px;
color: #FF706F;
margin-bottom: 5px;
}
p {
font-size: 16px;
}