mirror of
https://github.com/treffynnon/sqlstyle.guide.git
synced 2025-03-09 12:49:51 -05:00
77 lines
No EOL
948 B
CSS
77 lines
No EOL
948 B
CSS
---
|
|
layout: nil
|
|
---
|
|
|
|
/*
|
|
|
|
Begin styles from codeguide.co by @mdo
|
|
|
|
*/
|
|
|
|
html {
|
|
font-size: 16px;
|
|
}
|
|
@media (min-width: 48em) {
|
|
html {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font: 1rem/1.5 "PT Sans", sans-serif;
|
|
color: #333;
|
|
}
|
|
|
|
/*
|
|
|
|
End styles from codeguide.co by @mdo
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#content {
|
|
padding: 2% 10%;
|
|
max-width: 48em;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Roboto Slab', serif;
|
|
font-weight: 400;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'Roboto Slab', sans-serif;
|
|
font-weight: 400;
|
|
border-bottom: 0.25em solid #e2e2e2;
|
|
padding-bottom: 0.3em;
|
|
}
|
|
|
|
h3:before {
|
|
content: '➤';
|
|
width: 1.5em;
|
|
display: inline-block;
|
|
margin-left: -1.5em;
|
|
color: #f46801;
|
|
font-weight: normal;
|
|
}
|
|
|
|
/* Syntax highlighting */
|
|
code {
|
|
font-family: 'Droid Sans Mono', monospace;
|
|
font-size: 0.825em;
|
|
color: #666;
|
|
}
|
|
pre code {
|
|
max-height: 450px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
{% include highlight.hybrid.css %}
|
|
|
|
.anchorjs-link {
|
|
color: #f46801;
|
|
} |