-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
63 lines (55 loc) · 1.21 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
62
63
body {
background-color: #eaeaea;
min-width: 160px;
font-family: 'Inter', sans-serif;
font-size: 90%
}
.color-option {
margin: 0.5em;
}
.color-option>label, .color-option>input {
cursor: pointer;
}
.toggle-wrapper { margin:0.5em 0 0.5em; }
.toggle {
margin: 0.5em;
display: flex;
flex-direction: row;
border: 1px solid black;
border-radius:3px;
background: #ADD4CC;
overflow: hidden;
user-select: none;
-webkit-user-select: none;
}
.toggle>span { flex-grow: 1; text-align: center; padding: 5px; cursor: pointer; }
.toggle>span:not(:last-child) { border-right: 1px solid black; }
.toggle>span:hover { background: #73A29D; }
.toggle>span:active, .toggle .selected { background: #2c5655; color: #DEEBE7; }
.button-container {
margin: 1em 0 0 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
overflow: hidden;
user-select: none;
-webkit-user-select: none;
}
.button {
flex-grow: 1;
text-align: center;
vertical-align: middle;
padding: 5px;
border: 1px solid black;
border-radius:3px;
cursor: pointer;
}
.button:hover { background: #73A29D; }
.button:active { background: #2c5655; color: #DEEBE7; }
.reset {
background: #DEEBE7;
}
.save {
background: #ADD4CC;
}