aboutsummaryrefslogtreecommitdiffstats
path: root/scss
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2018-11-15 05:53:35 +0000
committers-ol <s-ol@users.noreply.github.com>2018-11-15 05:53:35 +0000
commit9e1e8b25de194665abcbd374a4cfe4c78b6c013e (patch)
tree17a7a13c1e08438a5bea70823ae9e9b78b249f24 /scss
parentupdate mmm.component docs (diff)
downloadmmm-9e1e8b25de194665abcbd374a4cfe4c78b6c013e.tar.gz
mmm-9e1e8b25de194665abcbd374a4cfe4c78b6c013e.zip
make links black
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;
}