mirror of
https://github.com/kittywitch/dork.dev.git
synced 2026-02-10 07:29:18 -08:00
deploy: 419d64960a
This commit is contained in:
commit
93ef5fdfff
5 changed files with 149 additions and 0 deletions
40
stylesheet.css
Normal file
40
stylesheet.css
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/* 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; }
|
||||
footer nav ul li {
|
||||
display: inline-block;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
flex-grow: 1; }
|
||||
footer nav ul li:nth-child(2) {
|
||||
text-align: right; }
|
||||
Loading…
Add table
Add a link
Reference in a new issue