summaryrefslogtreecommitdiffstats
path: root/sass
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2023-05-30 17:15:19 -0500
committerToby Vincent <tobyv13@gmail.com>2023-05-30 17:15:19 -0500
commite73de9d3dfc3da7fed92fcf3245a39ffe8dce6f9 (patch)
treecb946147093b74de1fce2fffe97eab075632f987 /sass
parent2dee9e4b88378d39002db86514ce48b6718e50d3 (diff)
feat: wrote about page and improved styles
Diffstat (limited to 'sass')
-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);
}