回答編集履歴
1
。
test
CHANGED
@@ -13,3 +13,35 @@
|
|
13
13
|
|
14
14
|
|
15
15
|
[isnicons公式サイト](https://ionicons.com/usage)
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
![イメージ説明](92b7eb17e879f17acb364ead578608a4.png)
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
あとCSS正しくは下記らしいですね
|
24
|
+
|
25
|
+
```CSS
|
26
|
+
|
27
|
+
.checkbox + .checkbox-icon:before {
|
28
|
+
|
29
|
+
content: "\f372";
|
30
|
+
|
31
|
+
font-family: Ionicons; /* ダブルクォーテーションいらないらしい */
|
32
|
+
|
33
|
+
color: #ccc;
|
34
|
+
|
35
|
+
font-size: 22px;
|
36
|
+
|
37
|
+
}
|
38
|
+
|
39
|
+
.checkbox:checked + .checkbox-icon:before {
|
40
|
+
|
41
|
+
content: "\f374";
|
42
|
+
|
43
|
+
color: #17bcdf;
|
44
|
+
|
45
|
+
}
|
46
|
+
|
47
|
+
```
|