This repository was archived by the owner on Apr 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (74 loc) · 1.76 KB
/
Copy pathstyle.css
File metadata and controls
97 lines (74 loc) · 1.76 KB
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
:root {
--background-offset-x: 0;
--background-offset-y: 0;
--background-scale: 20px;
--background-dot-radius: calc(var(--background-scale) / 10);
--background-color: #ffffff;
--background-accent-color: #dddddd;
--ui-background-color: #eeeeee;
--ui-accent-color: #ffffff;
--ui-border-color: #222222;
--ui-margin: 2em;
--ui-padding: .5em;
--ui-border-radius: .5em;
--ui-chip-scale: .2em;
}
* {
font-family: 'Roboto', sans-serif;
}
html, body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#view {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--background-color);
background-image: radial-gradient(circle, var(--background-accent-color) var(--background-dot-radius), transparent 0);
background-repeat: repeat;
background-position: center;
background-size: var(--background-scale) var(--background-scale);
}
#chipselect {
margin: var(--ui-margin);
padding: var(--ui-padding);
position: fixed;
bottom: 0;
left: 0;
width: calc(100% - var(--ui-margin) * 2);
background-color: var(--ui-background-color);
border-radius: var(--ui-border-radius);
display: flex;
overflow-x: auto;
}
.chipselectbutton > .deletebutton {
display: none;
}
.chipselectbutton:hover > .deletebutton {
display: initial;
}
#chipaddbutton {
font-size: 1.5em;
}
#chipaddbutton:hover, .chipselectbutton:hover {
filter: brightness(1.2);
}
.chipselectbutton {
font-size: 1.5em;
border: #000 2px solid;
margin-right: var(--ui-padding);
}
.chipselectbutton.selected {
transform: translateY(-5px);
}
.chipselectbutton.light {
color: black;
}
.chipselectbutton.dark {
color: white;
}