-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
61 lines (52 loc) · 1.13 KB
/
style.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
.dc-flex-container {
display: flex;
flex-flow: column nowrap;
justify-content: space-evenly;
}
.dc-small-desc {
font-size: smaller;
color: darkgray;
padding: 0;
margin-bottom: 4px;
}
.dc-radio-desc-inline {
padding-left: 2.1em;
}
.dc-color-input-combo {
display: flex;
align-items: center;
}
.dc-color-picker {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
padding: 0;
overflow: hidden;
width: 150%;
height: 150%;
margin: -25%;
}
.dc-color-picker-wrapper {
/* display: grid;
align-content: center;
justify-content: center; */
overflow: hidden;
width: 1.5em;
height: 1.5em;
margin: 5px;
border: 1px solid gray;
border-radius: 20%;
}
.dc-color-picker::-webkit-color-swatch-wrapper, .dc-color-picker::-moz-color-swatch-wrapper {
padding: 0;
}
.dc-color-picker::-webkit-color-swatch, .dc-color-picker::-moz-color-swatch {
border: none;
}
.dc-color-settings-group {
border: 1px solid #333;
border-radius: 4px;
padding: 8px;
margin: 4px;
margin-top: 0; /* Stops settings dropdown from 'jumping'. */
}