blob: 3e602dc1de925bd137ef60ed5005c2b7c2d09029 (
plain) (
blame)
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
|
details {
background-color: var(--base001);
padding: 1rem;
border-radius: 4px;
}
ul {
margin: 0;
}
input,
select {
cursor: pointer;
position: relative;
background-color: #fff;
/* margin: 0; */
/* width: 1.15em;
height: 1.15em; */
padding: 0.25em;
border: none;
border-radius: 4px;
transform: translateY(0.175em);
place-content: center;
}
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;
}
button:hover {
background-color: var(--base0A);
}
button:active {
transform: scale(0.975);
}
.small-button {
transform: scale(0.875);
}
.small-button:active {
transform: scale(0.75);
}
.smaller-button {
background-color: var(--base0C);
transform: scale(0.75);
}
.button-badge:hover {
background-color: var(--base0C);
cursor: unset;
}
.button-badge:active {
transform: scale(0.75);
}
.button-lined {
transform: translateY(0.175em);
}
.card {
background-color: var(--base001);
padding: 1rem;
border-radius: 4px;
}
|