pages/static/css/writ.css

295 lines
4.6 KiB
CSS

/*!
* Writ v1.0.4
*
* Copyright © 2015, Curtis McEnroe <curtis@cmcenroe.me>
*
* https://cmcenroe.me/writ/LICENSE (ISC)
*/
/* Fonts, sizes & vertical rhythm */
html {
font-family: Palatino, Georgia, Lucida Bright, Book Antiqua, serif;
font-size: 16px;
line-height: 1.5rem;
}
code, pre, samp, kbd {
font-family: Consolas, Liberation Mono, Menlo, Courier, monospace;
font-size: 0.833rem;
}
kbd { font-weight: bold; }
h1, h2, h3, h4, h5, h6, th { font-weight: normal; }
/* Minor third */
h1 { font-size: 2.488em; }
h2 { font-size: 2.074em; }
h3 { font-size: 1.728em; }
h4 { font-size: 1.44em; }
h5 { font-size: 1.2em; }
h6 { font-size: 1em; }
small { font-size: 0.833em; }
h1, h2, h3 { line-height: 3rem; }
p, ul, ol, dl, table, blockquote, pre, h1, h2, h3, h4, h5, h6 {
margin: 1.5rem 0 0;
}
ul ul, ol ol, ul ol, ol ul { margin: 0; }
hr {
margin: 0;
border: none;
padding: 1.5rem 0 0;
}
/* Accounting for borders */
table {
line-height: calc(1.5rem - 1px);
margin-bottom: -1px;
}
pre {
margin-top: calc(1.5rem - 1px);
margin-bottom: -1px;
}
/* Colors */
body { color: #222; }
code, pre, samp, kbd { color: #111; }
a, header nav a:visited, a code { color: #00e; }
a:visited, a:visited code { color: #60b; }
mark { color: inherit; }
code, pre, samp, thead, tfoot { background-color: rgba(0, 0, 0, 0.05); }
mark { background-color: #fe0; }
main aside, blockquote, ins { border: solid rgba(0, 0, 0, 0.05); }
pre, code, samp { border: solid rgba(0, 0, 0, 0.1); }
th, td { border: solid #dbdbdb; }
/* Layout */
body { margin: 1.5rem 1ch; }
body > header { text-align: center; }
main, body > footer {
display: block; /* Just in case */
max-width: 78ch;
margin: auto;
}
main figure, main aside {
float: right;
margin: 1.5rem 0 0 1ch;
}
main aside {
max-width: 26ch;
border-width: 0 0 0 0.5ch;
padding: 0 0 0 0.5ch;
}
/* Copy blocks */
blockquote {
margin-right: 3ch;
margin-left: 1.5ch;
border-width: 0 0 0 0.5ch;
padding: 0 0 0 1ch;
}
pre {
border-width: 1px;
border-radius: 2px;
padding: 0 0.5ch;
overflow-x: auto;
}
pre code {
border: none;
padding: 0;
background-color: transparent;
white-space: inherit;
}
img { max-width: 100%; }
/* Lists */
ul, ol, dd { padding: 0 0 0 3ch; }
dd { margin: 0; }
ul > li { list-style-type: disc; }
li ul > li { list-style-type: circle; }
li li ul > li { list-style-type: square; }
ol > li { list-style-type: decimal; }
li ol > li { list-style-type: lower-roman; }
li li ol > li { list-style-type: lower-alpha; }
nav ul {
padding: 0;
list-style-type: none;
}
nav ul li {
display: inline;
padding-left: 1ch;
white-space: nowrap;
}
nav ul li:first-child { padding-left: 0; }
/* Tables */
table {
width: 100%;
border-collapse: collapse;
overflow-x: auto;
}
th, td {
border-width: 1px;
padding: 0 0.5ch;
}
/* Copy inline */
a { text-decoration: none; }
sup, sub {
font-size: 0.75em;
line-height: 1em;
}
ins {
border-width: 1px;
padding: 1px;
text-decoration: none;
}
mark {
padding: 1px;
}
code, samp {
border-width: 1px;
border-radius: 2px;
padding: 0.1em 0.2em;
white-space: nowrap;
}
header > h1 > a{
color:black;
text-decoration:none;
}
header > h1 > a:visited, a:hover, a:focus, a:active{
color:black;
text-decoration:none;
}
.row {
display: flex;
width: 100%
}
.row::after {
/* display: block;*/
clear: both;
content: "";
}
.col-1 {width: 8.33%};
.col-2 {width: 16.66%;}
.col-3 {width: 25%;}
.col-4 {width: 33.33%;}
.col-5 {width: 41.66%;}
.col-6 {width: 50%;}
.col-7 {width: 58.33%;}
.col-8 {width: 66.66%;}
.col-9 {width: 75%;}
.col-10 {width: 83.33%;}
.col-11 {width: 91.66%;}
.col-12 {width: 100%;}
* {
box-sizing: border-box;
}
input, textarea{
outline:none;
font-family:inherit;
font-size:inherit;
}
.error{
color:red;
font-size:small;
}
.success{
color:green;
font-size:small;
}
@media (prefers-color-scheme:dark) {
body {
color: #eee;
background-color: #141414;
}
header h1{
color: #eee;
}
a:link {
color: #91ccee;
}
a:visited {
color: #8daabb;
}
a:focus,
a:hover {
color: #b0dffb;
}
a, header nav a:visited, a code { color: #91ccee; }
samp,
code,
kbd,
pre {
color: #6cf;
background:#24323d;
}
pre kbd {
color: #9c6;
}
blockquote {
border-color: #d8d8d8;
background-color:#141414;
}
td,
th {
border-color: #666;
}
button,
input,
textarea {
background-color: #4a4b4c;
color: #cccdce;
}
input, textarea {
border:none;
outline:none;
}
header a:active,
header a:focus,
header a:hover,
header a:link,
header a:visited {
color: #eee;
text-decoration: none;
}
#solution div div {
background: #262626;
}
header > h1 > a:visited, a:hover, a:focus, a:active{
color:#eee;
text-decoration:none;
}
}