-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
96 lines (75 loc) · 1.06 KB
/
style.css
File metadata and controls
96 lines (75 loc) · 1.06 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
#select-num {
padding: 1rem 2rem;
}
#select-num input {
margin-bottom: 0;
}
ul {
list-style: none;
padding: 0;
display: flex;
justify-content: space-between;
}
ul li {
list-style: none;
display: inline;
}
code {
word-break: break-all;
width: 100%;
margin-bottom: 1rem;
}
#deck-cards > button {
height: 15rem;
--pico-secondary-hover: rgb(0, 0, 0);
--pico-form-element-spacing-vertical: 0.5rem;
--pico-form-element-spacing-horizontal: 0.25rem;
width: CALC(100% / 3);
}
.identity {
word-break: keep-all;
height: 3rem;
display: block;
}
.ego-list {
word-break: keep-all;
font-size: .75em;
}
.zayin {
color: #0f0;
}
.teth {
color: #19d;
}
.he {
color: #fdcb41;
}
.waw {
color: #a2e;
}
.aleph {
color: #f00;
}
#randomcntlabel {
margin-bottom: 1rem;
}
@media (prefers-color-scheme: dark) {
#deck-cards > button {
--pico-secondary-hover: white;
}
.zayin {
color: #0f0;
}
.teth {
color: #19d;
}
.he {
color: #FFFF7B;
}
.waw {
color: #D084F6;
}
.aleph {
color: #FF7B7B;
}
}