aboutsummaryrefslogtreecommitdiffstats
path: root/scss
diff options
context:
space:
mode:
Diffstat (limited to 'scss')
-rw-r--r--scss/main.scss16
1 files changed, 13 insertions, 3 deletions
diff --git a/scss/main.scss b/scss/main.scss
index 16f0dbc..fa9901a 100644
--- a/scss/main.scss
+++ b/scss/main.scss
@@ -6,6 +6,10 @@ body {
font-family: sans-serif;
}
+a {
+ color: inherit;
+}
+
.canvas_app {
position: relative;
@@ -54,6 +58,12 @@ h1 .icons {
}
}
+$gray-bright: #eeeeee;
+$gray-dark: #303336;
+$gray-neutral: #b9bdc1;
+$gray-success: #bdddc1;
+$gray-fail: #ddbdc1;
+
@mixin left-border($w: 0.6rem) {
border-style: solid;
border-width: 0 0 0 $w;
@@ -68,7 +78,7 @@ h1 .icons {
pre > code.hljs {
@include left-border;
- border-color: #303336;
+ border-color: $gray-dark;
}
pre.dual-code {
@@ -93,6 +103,6 @@ pre.dual-code {
margin: 0 2rem;
padding: 1rem;
- background: #eeeeee;
- border-color: #b9bdc1;
+ background: $gray-bright;
+ border-color: $gray-neutral;
}