thefuckhow/styles/styles.css

53 lines
741 B
CSS
Raw Normal View History

2020-10-10 23:34:51 -05:00
/*
* styles.css
* Copyright (C) 2020 Vintage Salt
*
* Distributed under terms of the MIT license.
*/
:root {
--background: #808;
--text: #0ff;
2020-10-18 23:19:58 -05:00
--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);
2020-10-10 23:34:51 -05:00
}
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;
}