-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
58 lines (49 loc) · 871 Bytes
/
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
html {
box-sizing: border-box;
}
*, *::before, *::after {
box-sizing: inherit;
}
ol[role="list"],
ul[role="list"] {
padding: 0;
list-style: none;
}
#options {
padding: 0 2ch;
background-color: #242424;
position: fixed;
inset-block-end: 0;
inset-inline-start: 0;
border: .0625em solid white;
border-inline-start: 0;
border-block-end: 0;
border-radius: 0 0.975em 0 0;
width: 30em;
}
.history-wrapper {
height: 15ex;
overflow: auto;
}
#color-history thead {
position: sticky;
inset-block-start: -.125em;
background-color: #242424;
}
#color-history li {
padding: .25em;
display: flex;
align-items: center;
gap: 1ch;
}
#color-history li+li {
border-block-start: .125em solid currentColor;
}
.swatch {
flex: 0 0 3ch;
height: 3ch;
border: inset .0625em #242424;
}
button[data-action="fill"] {
font-size: .75rem;
}