summaryrefslogtreecommitdiff
path: root/css/desktop/checkbox.css
diff options
context:
space:
mode:
authorConnor Thomson <blumatrikz@gmail.com>2026-09-20 20:38:03 -0700
committerConnor Thomson <blumatrikz@gmail.com>2026-09-20 20:38:03 -0700
commit81cabf40f9063f72f04df9b720d7f0e25a185741 (patch)
tree8cc0b9379e60910b53a288582df421c38ff8c331 /css/desktop/checkbox.css
parent5c39d7c268819c35f2f7bc25c53d5eeb53510851 (diff)
Style checkbox and more
Diffstat (limited to 'css/desktop/checkbox.css')
-rwxr-xr-xcss/desktop/checkbox.css26
1 files changed, 25 insertions, 1 deletions
diff --git a/css/desktop/checkbox.css b/css/desktop/checkbox.css
index 5de1d8c..5ad0cbb 100755
--- a/css/desktop/checkbox.css
+++ b/css/desktop/checkbox.css
@@ -17,6 +17,30 @@
*/
.checkbox {
+ appearance: none;
+ -webkit-appearance: none;
margin: 0;
- accent-color: #12A3EB;
+ padding: 0;
+ width: 14px;
+ height: 14px;
+ font-size: 12px;
+ line-height: 12px;
+ text-align: center;
+ color: white;
+ background-color: white;
+ border: 1px solid #98A5B0;
+ border-radius: 3px;
+}
+
+.checkbox:focus {
+ outline: none;
+ border: 1px solid #98A5B0;
+}
+
+.checkbox:checked {
+ background-color: #12A3EB;
+}
+
+.checkbox:checked::before {
+ content: "\2713";
}