summaryrefslogtreecommitdiffstats
path: root/sass/style.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/style.scss')
-rw-r--r--sass/style.scss34
1 files changed, 18 insertions, 16 deletions
diff --git a/sass/style.scss b/sass/style.scss
index bccc367..c2eddb8 100644
--- a/sass/style.scss
+++ b/sass/style.scss
@@ -26,8 +26,10 @@ a {
color: var(--aqua-dim);
}
+ text-decoration: none;
+
&:hover {
- text-decoration: none;
+ text-decoration: underline;
}
&:active {
@@ -35,14 +37,6 @@ a {
}
}
-nav a {
- text-decoration: none;
-
- &:hover {
- text-decoration: underline;
- }
-}
-
footer {
color: var(--gray);
font-size: 0.8rem;
@@ -127,10 +121,22 @@ body {
& > * {
display: inline;
}
+ }
+ }
- & > time {
- text-decoration: underline;
- }
+ address {
+ dl {
+ display: grid;
+ grid-template-columns: max-content auto;
+ }
+
+ dt {
+ grid-column-start: 1;
+ }
+
+ dd {
+ margin-left: 1rem;
+ grid-column-start: 2;
}
}
@@ -149,11 +155,7 @@ body {
li > article > header > hgroup > :first-child a {
color: var(--blue);
- text-decoration: none;
- &:hover {
- text-decoration: underline;
- }
&:visited {
color: var(--blue-dim);
}