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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
input,
select {
cursor: pointer;
position: relative;
background-color: var(--base01);
/* margin: 0; */
/* width: 1.15em;
height: 1.15em; */
padding: 0.25em;
border: none;
border-radius: 4px;
transform: translateY(0.175em);
place-content: center;
transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
box-shadow: 0 4px 30px var(--base01);
}
@media (prefers-color-scheme: dark) {
input,
select {
background-color: var(--base07);
/* color: var(--base05); */
}
}
input[type='text'],
input[type='number'],
input[type='date'],
input[type='time'],
button {
padding: 0.25em 0.5em;
}
select {
transform: translateY(0em);
margin-top: 0.25em;
margin-bottom: 0.25em;
padding: 0.25em 0.5em;
}
input[type='checkbox'] {
-webkit-appearance: none;
appearance: none;
margin: 0;
width: 1.15em;
height: 1.15em;
transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
}
input[type='checkbox']:checked {
background-color: var(--base0C);
}
input[type='checkbox']:checked:before {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input[type='checkbox']:active {
transform: scale(1);
transition: transform 0.15s ease-in-out;
}
input[type='checkbox']:hover {
background-color: var(--base0A);
}
button {
cursor: pointer;
position: relative;
background-color: var(--base0C);
color: var(--base00);
border: none;
border-radius: 4px;
transition: background-color 0.15s ease-in-out, transform 0.15s ease-in-out;
box-shadow: 0 4px 30px var(--base01);
}
button:hover {
background-color: var(--base0A);
}
button:active {
transform: scale(0.975);
}
input:disabled,
select:disabled,
button:disabled {
cursor: not-allowed;
opacity: 0.5;
}
input:disabled:hover,
select:disabled:hover,
button:disabled:hover {
background-color: var(--base0C);
}
input:disabled:active,
select:disabled:active,
button:disabled:active {
transform: scale(1);
}
.small-button {
transform: scale(0.875);
}
.small-button:active {
transform: scale(0.75);
}
.smaller-button {
background-color: var(--base0C);
transform: scale(0.75);
}
.button-square {
background-color: var(--base0C);
transform: scale(0.75);
padding: 0.125em 0.575em;
}
.button-lined {
transform: translateY(0.175em);
}
.button-action {
background-color: var(--base0E);
}
|