This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
toggleSwitch.css
48 lines (46 loc) · 1.75 KB
/
toggleSwitch.css
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
/* Thanks: https://qiita.com/_y_s/items/5b3a73f873dda2c2f47a */
input[type="checkbox"] {
border: 1px solid #0c0c0d4d;
color: #737373; /* グレー */
display: inline-block;
margin: 0 4px;
appearance: none; /* 元々あるチェックボックスを非表示にする */
background-color: #0c0c0d1a; /* 楕円の色=文字色alpha10% */
border-radius: 8px; /* heightの半分 */
height: 16px;
width: 32px; /* heightの2倍くらい */
}
input[type="checkbox"]:hover {
background-color: #0c0c0d33;
border-color: #0c0c0d7f;
}
input[type="checkbox"]:active {
background-color: #0c0c0d4d;
}
input[type="checkbox"]:focus {
box-shadow: 0 0 0 1px #0a84ff inset, 0 0 0 1px #0a84ff, 0 0 0 4px #0a84ff4d;
}
input[type="checkbox"]:checked {
background-color: #0060df; /* 青 */
border-color: #0060df;
}
/* 中の● */
input[type="checkbox"]::before {
background-color: currentColor; /* ●の色=グレー */
border-radius: 6px; /* heightの半分 */
content: ""; /* おまじない */
display: inline-block; /* おまじない */
height: 12px; /* 楕円部のheightより2px小さいくらい */
margin-left: 1px; /* 楕円部と●のすき間 */
margin-top: 1px; /* 楕円部と●のすき間 */
transition: margin-left .2s cubic-bezier(.07, .95, 0, 1); /* ヌルっと具合は調整 */
width: 12px; /* heightに合わせる */
}
input[type="checkbox"]:checked::before {
background-color: #ffffff; /* 白(楕円部の色と調整) */
margin-left: 17px; /* ●を右へ移動 */
}
.zh_switch {
font-size: 0.8em;
text-align: center;
}