thefuckhow/styles/styles.css
2020-10-10 23:34:51 -05:00

43 lines
588 B
CSS

/*
* 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;
}