mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-09 07:09:18 -08:00
feat: cleanup
This commit is contained in:
parent
57361be9e3
commit
3b1c786fd6
11 changed files with 173 additions and 100 deletions
|
|
@ -1,3 +1,7 @@
|
|||
/*
|
||||
Made with love by @kittywitch ^_^
|
||||
*/
|
||||
|
||||
$light-bg: #fcfcfc;
|
||||
$light-fg: #333;
|
||||
$light-heading: #111;
|
||||
|
|
@ -13,7 +17,11 @@ $link-visited: #3784e8;
|
|||
}
|
||||
|
||||
html {
|
||||
font-family: "Monaspace Krypton", monospace;
|
||||
color: $dark-fg;
|
||||
background: $dark-bg;
|
||||
h1, h2, h3 {
|
||||
color: $dark-heading;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
|
|
@ -27,6 +35,11 @@ body {
|
|||
padding: 1em;
|
||||
}
|
||||
|
||||
/* A kindness to those of you who don't use Javascript */
|
||||
.nonoscript {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#gallery {
|
||||
ul {
|
||||
list-style-type: none;
|
||||
|
|
@ -98,14 +111,11 @@ footer nav ul {
|
|||
list-style-type: none;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
column-count: 2;
|
||||
gap: 0.5em 0.25em;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
li {
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
flex-grow: 1;
|
||||
&:nth-child(2n) {
|
||||
text-align: right;
|
||||
}
|
||||
|
|
@ -116,9 +126,9 @@ footer nav ul {
|
|||
html {
|
||||
color: $dark-fg;
|
||||
background: $dark-bg;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: $dark-heading;
|
||||
h1, h2, h3 {
|
||||
color: $dark-heading;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -126,9 +136,9 @@ footer nav ul {
|
|||
html {
|
||||
color: $light-fg;
|
||||
background: $light-bg;
|
||||
}
|
||||
h1, h2, h3 {
|
||||
color: $light-heading;
|
||||
h1, h2, h3 {
|
||||
color: $light-heading;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue