spec/style.css

115 lines
2 KiB
CSS
Raw Normal View History

2018-10-29 21:49:22 +01:00
* {
box-sizing: border-box;
}
2018-10-15 23:37:28 +02:00
body {
margin: 40px auto;
max-width: 800px;
font-size: 18px;
2018-10-17 21:06:31 +02:00
line-height: 1.5;
2018-10-15 23:37:28 +02:00
padding: 0 10px;
color: #333;
font-family: Constantia, "Lucida Bright", Lucidabright, "Lucida Serif", Lucida, "DejaVu Serif," "Bitstream Vera Serif", "Liberation Serif", Georgia, serif;
/* font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; */
}
2018-10-17 21:06:31 +02:00
p {
margin-bottom: 1.4rem;
}
h1, h2, h3, h4, h5 {
line-height: 1.2;
}
h1 {
margin-top: 0;
font-size: 4rem;
}
h2 {
font-size: 3rem;
}
h3 {
font-size: 2.25rem;
}
h4 {
font-size: 1.5rem;
margin-bottom: 1.5rem;
}
h5 {
font-size: 1.25rem;
font-variant: small-caps;
margin-bottom: 1rem;
}
small {
font-size: 0.8rem;
2018-10-15 23:37:28 +02:00
}
a {
color: #0074D9;
}
code {
/* font-family: Consolas, "Andale Mono WT", "Andale Mono", "Lucida Console", "Lucida Sans Typewriter", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", "Liberation Mono", "Nimbus Mono L", Monaco, "Courier New", Courier, monospace; */
2018-10-17 21:06:31 +02:00
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 0.9rem;
color: #B10DC9;
2018-10-15 23:37:28 +02:00
}
2018-10-17 21:06:31 +02:00
2018-10-15 23:37:28 +02:00
pre {
display: block;
color: #212529;
overflow: auto;
margin-top: 0;
margin-bottom: 1rem;
}
aside {
position: relative;
padding: .75rem 1.25rem;
margin-bottom: 1rem;
border: 1px solid transparent;
border-radius: .25rem;
color: #0c5460;
background-color: #d1ecf1;
border-color: #bee5eb;
}
2018-10-17 21:06:31 +02:00
2018-10-15 23:37:28 +02:00
aside p:first-child {
margin-top: 0;
}
2018-10-17 21:06:31 +02:00
2018-10-15 23:37:28 +02:00
aside p:last-child {
margin-bottom: 0;
2018-10-17 21:06:31 +02:00
}
ol ol {
list-style-type: lower-alpha;
}
#toc ul {
list-style-type: none;
}
#toc>ul {
padding-left: 0;
2018-10-29 21:49:22 +01:00
}
table {
border-collapse: collapse;
width: 100%;
}
table tr {
border-top: 1px solid #dee2e6;
}
table thead tr {
border-bottom: 2px solid #dee2e6;
}
table tbody tr:nth-child(odd) {
background-color: rgba(0,0,0,.05);
}