53 lines
741 B
CSS
53 lines
741 B
CSS
/*
|
|
* styles.css
|
|
* Copyright (C) 2020 Vintage Salt
|
|
*
|
|
* Distributed under terms of the MIT license.
|
|
*/
|
|
|
|
:root {
|
|
--background: #808;
|
|
--text: #0ff;
|
|
--text-code: #fff;
|
|
--link: #ff0;
|
|
--link-hover: #880;
|
|
}
|
|
a {
|
|
color: var(--link);
|
|
text-decoration: none;
|
|
transition: .08s ease-in;
|
|
}
|
|
a:hover {
|
|
color: var(--link-hover);
|
|
}
|
|
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;
|
|
}
|