mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-10 07:29:18 -08:00
feat: initial commit
This commit is contained in:
commit
bec441fb57
8 changed files with 180 additions and 0 deletions
44
stylesheet.sass
Normal file
44
stylesheet.sass
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
/* Let's keep it stupid, simple. ^^ */
|
||||
|
||||
*
|
||||
/* Make CSS sizing sane */
|
||||
box-sizing: border-box
|
||||
|
||||
html
|
||||
font-family: "Monaspace Krypton", monospace
|
||||
/* Make the main text not solid black */
|
||||
color: #333
|
||||
/* Let's not use solid white */
|
||||
background: #fcfcfc
|
||||
|
||||
body
|
||||
/* Make the body a 80 character wide container */
|
||||
width: 80ch
|
||||
/* Center the container within the viewport */
|
||||
margin: 0 auto
|
||||
/* Give the lines an adequate amount of room to breathe. */
|
||||
line-height: 1.4em
|
||||
|
||||
|
||||
h1, h2, h3
|
||||
/* More contrast with the headers than the main text */
|
||||
color: #111
|
||||
|
||||
|
||||
/* We want the footer to be like two columns, where the right columns are also right-aligned and the columns grow to share the space sanely. */
|
||||
|
||||
footer nav ul
|
||||
list-style-type: none
|
||||
padding: 0
|
||||
margin: 0
|
||||
display: flex
|
||||
flex-wrap: wrap
|
||||
column-count: 2
|
||||
gap: 0.5em 0.25em
|
||||
li
|
||||
display: inline-block
|
||||
padding: 0
|
||||
margin: 0
|
||||
flex-grow: 1
|
||||
&:nth-child(2)
|
||||
text-align: right
|
||||
Loading…
Add table
Add a link
Reference in a new issue