|
@@ -86,47 +86,21 @@ $codeFont: "Fira Code", $systemFontsMono;
|
|
|
--r-list-bullet-color: #{$listBulletColor};
|
|
|
}
|
|
|
|
|
|
-.reveal strong, .reveal b {
|
|
|
- color: var(--r-bold-color);
|
|
|
+.reveal {
|
|
|
+ strong, b {
|
|
|
+ color: var(--r-bold-color);
|
|
|
+ }
|
|
|
+ em, i, blockquote {
|
|
|
+ color: var(--r-italic-color);
|
|
|
+ }
|
|
|
+ code {
|
|
|
+ color: var(--r-inline-code-color);
|
|
|
+ }
|
|
|
+ // Dracula colored list bullets and numbers
|
|
|
+ ul, ol {
|
|
|
+ li::marker {
|
|
|
+ color: var(--r-list-bullet-color);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
-.reveal em, .reveal i, .reveal blockquote {
|
|
|
- color: var(--r-italic-color);
|
|
|
-}
|
|
|
-
|
|
|
-.reveal code {
|
|
|
- color: var(--r-inline-code-color);
|
|
|
-}
|
|
|
-
|
|
|
-// Dracula colored list bullets and numbers
|
|
|
-.reveal ul {
|
|
|
- list-style: none;
|
|
|
-}
|
|
|
-
|
|
|
-.reveal ul li::before {
|
|
|
- content: "•";
|
|
|
- color: var(--r-list-bullet-color);
|
|
|
- display: inline-block;
|
|
|
- width: 1em;
|
|
|
- margin-left: -1em
|
|
|
-}
|
|
|
-
|
|
|
-.reveal ol {
|
|
|
- list-style: none;
|
|
|
- counter-reset: li;
|
|
|
-}
|
|
|
-
|
|
|
-.reveal ol li::before {
|
|
|
- content: counter(li) ".";
|
|
|
- color: var(--r-list-bullet-color);
|
|
|
- display: inline-block;
|
|
|
- width: 2em;
|
|
|
-
|
|
|
- margin-left: -2.5em;
|
|
|
- margin-right: 0.5em;
|
|
|
- text-align: right;
|
|
|
-}
|
|
|
-
|
|
|
-.reveal ol li {
|
|
|
- counter-increment: li
|
|
|
-}
|