Add an actual site
This commit is contained in:
42
styles/styles.css
Normal file
42
styles/styles.css
Normal file
@@ -0,0 +1,42 @@
|
||||
/*
|
||||
* styles.css
|
||||
* Copyright (C) 2020 Vintage Salt
|
||||
*
|
||||
* Distributed under terms of the MIT license.
|
||||
*/
|
||||
|
||||
:root {
|
||||
--background: #808;
|
||||
--text: #0ff;
|
||||
--text-code: #ff0;
|
||||
}
|
||||
body {
|
||||
background: var(--background);
|
||||
color: var(--text);
|
||||
}
|
||||
code {
|
||||
color: var(--text-code);
|
||||
display: inline-block;
|
||||
font-size: 12pt;
|
||||
padding: 2px 8px;
|
||||
}
|
||||
code.bigcode {
|
||||
display: block;
|
||||
font-size: 300%;
|
||||
text-align: center;
|
||||
margin: auto;
|
||||
padding: 0;
|
||||
}
|
||||
.header {
|
||||
padding: 1em;
|
||||
text-align: center;
|
||||
}
|
||||
.header h1 {
|
||||
font-size: 300%;
|
||||
margin: 0;
|
||||
}
|
||||
.content {
|
||||
margin: 0 auto;
|
||||
max-width: 48em;
|
||||
padding: 1em;
|
||||
}
|
Reference in New Issue
Block a user