Commit ·
0022e88
1
Parent(s): 4396926
28. Sept. 2024, 12:17
Browse files- custom.css +10 -7
custom.css
CHANGED
|
@@ -44,7 +44,7 @@ div.tabs div.tabitem {
|
|
| 44 |
width: 57px;
|
| 45 |
height: 27px;
|
| 46 |
display: inline-block;
|
| 47 |
-
border-radius:
|
| 48 |
background: var(--neutral-700);
|
| 49 |
box-shadow: var(--shadow-inset);
|
| 50 |
transition: background-color .3s, cursor .3s;
|
|
@@ -68,11 +68,10 @@ div.tabs div.tabitem {
|
|
| 68 |
&>label:has(input[type="checkbox"])::after {
|
| 69 |
content: "";
|
| 70 |
position: absolute;
|
| 71 |
-
top:
|
| 72 |
-
left:
|
| 73 |
-
width:
|
| 74 |
-
height:
|
| 75 |
-
border: 2px solid var(--neutral-700);
|
| 76 |
border-radius: 50%;
|
| 77 |
background: var(--neutral-900);
|
| 78 |
box-shadow: var(--shadow-inset);
|
|
@@ -83,7 +82,11 @@ div.tabs div.tabitem {
|
|
| 83 |
&>label:has(input[type="checkbox"]:checked)::after {
|
| 84 |
content: "";
|
| 85 |
position: absolute;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
background: var(--primary-600);
|
| 87 |
-
left: 33px;
|
| 88 |
}
|
| 89 |
}
|
|
|
|
| 44 |
width: 57px;
|
| 45 |
height: 27px;
|
| 46 |
display: inline-block;
|
| 47 |
+
border-radius: 13px;
|
| 48 |
background: var(--neutral-700);
|
| 49 |
box-shadow: var(--shadow-inset);
|
| 50 |
transition: background-color .3s, cursor .3s;
|
|
|
|
| 68 |
&>label:has(input[type="checkbox"])::after {
|
| 69 |
content: "";
|
| 70 |
position: absolute;
|
| 71 |
+
top: 3px;
|
| 72 |
+
left: 3px;
|
| 73 |
+
width: 20px;
|
| 74 |
+
height: 20px;
|
|
|
|
| 75 |
border-radius: 50%;
|
| 76 |
background: var(--neutral-900);
|
| 77 |
box-shadow: var(--shadow-inset);
|
|
|
|
| 82 |
&>label:has(input[type="checkbox"]:checked)::after {
|
| 83 |
content: "";
|
| 84 |
position: absolute;
|
| 85 |
+
background: var(--neutral-50);
|
| 86 |
+
left: 32px;
|
| 87 |
+
}
|
| 88 |
+
|
| 89 |
+
&>label:has(input[type="checkbox"]:checked) {
|
| 90 |
background: var(--primary-600);
|
|
|
|
| 91 |
}
|
| 92 |
}
|