aboutsummaryrefslogtreecommitdiffstats
path: root/scss
diff options
context:
space:
mode:
authors-ol <s-ol@users.noreply.github.com>2019-10-06 13:57:34 +0000
committers-ol <s-ol@users.noreply.github.com>2019-10-06 16:13:52 +0000
commit5e3810532c740ddb691cd4dec67909af9ae7b7c5 (patch)
tree47d6017e451805de92f7d0b3a1f2c6a7cc80dbe5 /scss
parentmake logo clickable (diff)
parentbugfixes (diff)
downloadmmm-5e3810532c740ddb691cd4dec67909af9ae7b7c5.tar.gz
mmm-5e3810532c740ddb691cd4dec67909af9ae7b7c5.zip
Merge branch 'portfolio'
Diffstat (limited to 'scss')
-rw-r--r--scss/_content.scss14
-rw-r--r--scss/_reset.scss7
2 files changed, 20 insertions, 1 deletions
diff --git a/scss/_content.scss b/scss/_content.scss
index 708685f..7468de5 100644
--- a/scss/_content.scss
+++ b/scss/_content.scss
@@ -18,6 +18,20 @@
}
}
+ .markdown {
+ h2 + p,
+ h3 + p,
+ h4 + p,
+ h5 + p,
+ h6 + p {
+ margin-top: 0.2em;
+ }
+ }
+
+ .markdown > ul {
+ margin-block-end: 1em;
+ }
+
.embed {
width: inherit;
height: inherit;
diff --git a/scss/_reset.scss b/scss/_reset.scss
index 99f1cae..ef2ef0d 100644
--- a/scss/_reset.scss
+++ b/scss/_reset.scss
@@ -40,7 +40,12 @@ a {
text-decoration: underline;
text-decoration-color: transparent;
- &:hover {
+ cursor: default;
+ &[href] {
+ cursor: pointer;
+ }
+
+ &[href]:hover {
filter: invert(40%);
text-decoration-color: currentColor;
}