Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -82,4 +82,15 @@ button:hover {
|
|
| 82 |
li::before {
|
| 83 |
content: "💭";
|
| 84 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 85 |
}
|
|
|
|
| 82 |
li::before {
|
| 83 |
content: "💭";
|
| 84 |
}
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
@counter-style repeating-emoji {
|
| 88 |
+
system: cyclic;
|
| 89 |
+
symbols: "💭" "📚" "⌛"; // unicode code point
|
| 90 |
+
suffix: " ";
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
// Add this class to the ul or ol element
|
| 94 |
+
.repeating-counter-rule {
|
| 95 |
+
list-style-type: repeating-emoji;
|
| 96 |
}
|