devroom.io/themes/cocoa-eh/layouts/partials/css/main.css

928 lines
18 KiB
CSS
Raw Normal View History

2017-10-16 13:33:26 +00:00
@font-face {
2018-09-19 12:06:13 +00:00
font-family: 'Nexa Bold';
src: url('{{ .Site.BaseURL }}fonts/Nexa Bold.otf');
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
2017-10-16 13:33:26 +00:00
/* HTML5 display-role reset for older browsers */
2018-09-19 12:06:13 +00:00
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
display: block;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
body {
2018-09-19 12:06:13 +00:00
line-height: 1;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
ol,
ul {
list-style: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
blockquote,
q {
quotes: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
blockquote:before,
blockquote:after,
q:before,
q:after {
content: '';
content: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
table {
2018-09-19 12:06:13 +00:00
border-collapse: collapse;
border-spacing: 0;
2017-10-16 13:33:26 +00:00
}
*,
*:before,
*:after {
2018-09-19 12:06:13 +00:00
box-sizing: border-box;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
a,
a:visited,
a:focus,
a:active {
2018-09-19 12:06:13 +00:00
text-decoration: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
html {
2018-09-19 12:06:13 +00:00
height: 100%;
font-size: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
body {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
justify-content: flex-start;
width: 100%;
min-height: 100%;
font-weight: 400;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
color: #111111;
line-height: 1.6;
text-rendering: optimizeLegibility !important;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
.icon {
2018-09-19 12:06:13 +00:00
text-rendering: geometricPrecision !important;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
width: 100%;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
.container {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
width: 100%;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header .container {
2018-09-19 12:06:13 +00:00
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header .content {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header .container .logo {
2018-09-19 12:06:13 +00:00
display: none;
max-width: 100px;
margin-left: -2em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header .name {
2018-09-19 12:06:13 +00:00
padding-top: 20px;
font-size: 28px;
line-height: 1.2em;
font-family: 'Nexa Bold', 'Helvetica Neue', 'Arial', sans-serif;
letter-spacing: -0.005rem;
text-transform: uppercase;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
color: #333333;
color: #555555;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav {
2018-09-19 12:06:13 +00:00
margin-bottom: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul {
2018-09-19 12:06:13 +00:00
list-style: none;
text-align: center;
display: -webkit-inline-flex;
display: -moz-inline-flex;
display: -ms-inline-flexbox;
display: -ms-inline-flex;
display: inline-flex;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul a {
2018-09-19 12:06:13 +00:00
margin-left: 6px;
margin-right: 6px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul a:first-child {
2018-09-19 12:06:13 +00:00
margin-left: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul a:last-child {
2018-09-19 12:06:13 +00:00
margin-right: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul li {
2018-09-19 12:06:13 +00:00
color: #555555;
font-weight: 400;
font-size: 14px;
text-transform: uppercase;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
-webkit-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-moz-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header nav ul li:hover {
2018-09-19 12:06:13 +00:00
color: #111111;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container {
2018-09-19 12:06:13 +00:00
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
flex-direction: column-reverse;
width: 100%;
text-align: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container a {
2018-09-19 12:06:13 +00:00
font-size: 14px;
margin-left: 6px;
margin-right: 6px;
opacity: 0.6;
-webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container a:first-child {
2018-09-19 12:06:13 +00:00
margin-left: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container a:last-child {
2018-09-19 12:06:13 +00:00
margin-right: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container a:hover {
2018-09-19 12:06:13 +00:00
opacity: 0.8;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container a .icon {
2018-09-19 12:06:13 +00:00
width: 16px;
height: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container .copyright {
2018-09-19 12:06:13 +00:00
flex-grow: 0.5;
text-align: start;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.footer .container .icons {
2018-09-19 12:06:13 +00:00
flex-grow: 0.5;
text-align: end;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container {
2018-09-19 12:06:13 +00:00
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
-webkit-justify-content: flex-start;
-moz-justify-content: flex-start;
-ms-justify-content: flex-start;
justify-content: flex-start;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content {
2018-09-19 12:06:13 +00:00
color: #111111;
font-size: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .title-container {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-justify-content: space-between;
-moz-justify-content: space-between;
-ms-justify-content: space-between;
justify-content: space-between;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .posts {
2018-09-19 12:06:13 +00:00
margin-bottom: 4em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .page-heading {
2018-09-19 12:06:13 +00:00
font-size: 24px;
line-height: 1.2em;
font-weight: 700;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
letter-spacing: -0.005rem;
text-transform: uppercase;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
color: #333333;
margin-bottom: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .page-heading {
2018-09-19 12:06:13 +00:00
margin-bottom: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .meta {
2018-09-19 12:06:13 +00:00
font-size: 14px;
color: #666666;
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
margin-bottom: 32px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .date,
section.main .content .front-matter .author,
section.main .content .front-matter .tags,
section.main .content .front-matter .word-count,
section.main .content .front-matter .reading-time .middot {
2018-09-19 12:06:13 +00:00
display: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .middot {
2018-09-19 12:06:13 +00:00
font-size: 6px;
margin: 0 6px;
display: inline;
vertical-align: middle;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .middot:before {
2018-09-19 12:06:13 +00:00
content: "•";
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .tags ul {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .tags ul li {
2018-09-19 12:06:13 +00:00
-webkit-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-moz-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-ms-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-o-transition: opacity 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .tags ul li:hover {
2018-09-19 12:06:13 +00:00
opacity: 0.7;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .front-matter .tags ul li a {
2018-09-19 12:06:13 +00:00
color: #666666;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container.f04 {
2018-09-19 12:06:13 +00:00
-webkit-justify-content: center;
-moz-justify-content: center;
-ms-justify-content: center;
justify-content: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container.f04 .content {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container.f04 .content .num {
2018-09-19 12:06:13 +00:00
margin: 30px 0px 30px 0;
font-weight: 400;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
font-size: 50px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container.f04 .content .detail {
2018-09-19 12:06:13 +00:00
margin-bottom: 40px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .groupby {
2018-09-19 12:06:13 +00:00
margin-top: 1em;
padding-left: 0.5em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .post-item {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
display: list-item;
list-style: disc inside;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .post-item .meta {
2018-09-19 12:06:13 +00:00
font-size: 14px;
color: #666666;
display: none;
min-width: 100px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .see-more {
2018-09-19 12:06:13 +00:00
font-style: italic;
float: right;
font-size: 0.9em;
margin-top: 2em;
color: #313537;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .see-more:hover {
2018-09-19 12:06:13 +00:00
color: #666;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section {
2018-09-19 12:06:13 +00:00
padding: 0 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header {
2018-09-19 12:06:13 +00:00
padding-top: 10px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.header-home {
2018-09-19 12:06:13 +00:00
padding-top: 36px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main {
2018-09-19 12:06:13 +00:00
padding-top: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .post-item .meta {
display: block;
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .container .content .post-item {
display: flex;
list-style: none;
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
a {
2018-09-19 12:06:13 +00:00
color: #428bca;
-webkit-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-moz-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
-o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72);
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
a:hover {
2018-09-19 12:06:13 +00:00
color: #2a6496;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
img {
2018-09-19 12:06:13 +00:00
max-width: 100%;
cursor: pointer;
2017-10-16 14:12:17 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content {
width: 100%;
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown {
2018-09-19 12:06:13 +00:00
font-size: 1.1em;
line-height: 1.75em;
color: #313537;
font-family: serif;
font-weight: 300;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown h1,
section.main .content .markdown h2,
section.main .content .markdown h3,
section.main .content .markdown h4,
section.main .content .markdown h5,
section.main .content .markdown h6 {
2018-09-19 12:06:13 +00:00
font-size: 22px;
font-family: 'Helvetica Neue', 'Arial', sans-serif;
letter-spacing: -0.005rem;
font-weight: 700;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-smoothing: antialiased;
color: #333333;
text-transform: none;
margin-top: 1.75rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown h1 {
2018-09-19 12:06:13 +00:00
font-size: 1.75rem;
margin-bottom: 2rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown h2 {
2018-09-19 12:06:13 +00:00
font-size: 1.5rem;
margin-bottom: 1.5rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown h3 {
2018-09-19 12:06:13 +00:00
font-size: 1em;
margin-bottom: 1rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown h4,
section.main .content .markdown h5,
section.main .content .markdown h6 {
2018-09-19 12:06:13 +00:00
font-size: 1rem;
margin-bottom: 1rem;
letter-spacing: none;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown code,
section.main .content .markdown pre {
2018-09-19 12:06:13 +00:00
font-family: 'Menlo', monospace;
font-size: 0.98rem;
background-color: #fff;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown code {
2018-09-19 12:06:13 +00:00
/* enclosed by single backtick (`) */
padding: .15em .5em;
border-radius: 2px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown pre {
2018-09-19 12:06:13 +00:00
/* Hugo specific: consider using the 'highlight' shortcode */
display: block;
margin-top: 1rem;
margin-bottom: 2rem;
padding: 1rem;
line-height: 1.5em;
white-space: pre;
word-break: break-all;
word-wrap: break-word;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown pre code {
2018-09-19 12:06:13 +00:00
/* enclosed by 4 backticks (````) */
padding: 0;
font-size: 0.9rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown a code {
2018-09-19 12:06:13 +00:00
color: #428bca !important;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown a code:hover {
2018-09-19 12:06:13 +00:00
text-decoration: underline;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown p {
2018-09-19 12:06:13 +00:00
{
{
if .Site.Params.align_left
}
}
text-align: left;
{
{
else
}
}
text-align: justify;
{
{
end
}
}
margin-top: 0;
margin-bottom: 1em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown ul,
section.main .content .markdown ol,
section.main .content .markdown dl {
2018-09-19 12:06:13 +00:00
margin-top: 1rem;
margin-bottom: 2rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown dt {
2018-09-19 12:06:13 +00:00
font-weight: bold;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown dd {
2018-09-19 12:06:13 +00:00
margin-bottom: .5rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown ul {
2018-09-19 12:06:13 +00:00
list-style-type: disc;
list-style-position: outside;
margin-bottom: 1.25rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown ol {
2018-09-19 12:06:13 +00:00
list-style-type: decimal;
margin-bottom: 1.25rem;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown li {
2018-09-19 12:06:13 +00:00
margin-left: 2em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown em {
2018-09-19 12:06:13 +00:00
font-style: italic;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown strong {
2018-09-19 12:06:13 +00:00
font-weight: 700;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown hr {
2018-09-19 12:06:13 +00:00
position: relative;
margin: 1.75rem 0;
border: 0;
border-top: 1px solid #808080;
border-top: 1px solid #999999;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown abbr {
2018-09-19 12:06:13 +00:00
font-size: 0.85rem;
font-weight: bold;
color: #666666;
text-transform: uppercase;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown abbr[title] {
2018-09-19 12:06:13 +00:00
cursor: help;
border-bottom: 1px dotted #808080;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown blockquote {
2018-09-19 12:06:13 +00:00
padding: .5rem 1rem;
margin: .8rem 0;
color: #7a7a7a;
border-left: .25rem solid #e5e5e5;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown blockquote p:last-child {
2018-09-19 12:06:13 +00:00
margin-bottom: 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown figure {
2018-09-19 12:06:13 +00:00
width: 100%;
background: #fff;
margin-bottom: 1em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown figure img {
2018-09-19 12:06:13 +00:00
width: 100%;
height: auto;
max-width: 100%;
display: block;
position: static;
margin: auto;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown table {
2018-09-19 12:06:13 +00:00
margin-bottom: 1rem;
width: 100%;
border: 1px solid #e5e5e5;
border-collapse: collapse;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown td,
section.main .content .markdown th {
2018-09-19 12:06:13 +00:00
padding: .25rem .5rem;
border: 1px solid #e5e5e5;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown tbody tr:nth-child(odd) td,
section.main .content .markdown tbody tr:nth-child(odd) th {
2018-09-19 12:06:13 +00:00
background-color: #f7f7f7;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown .footnotes ol {
2018-09-19 12:06:13 +00:00
list-style-type: decimal;
margin-left: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown .footnotes li {
2018-09-19 12:06:13 +00:00
list-style-type: unset;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .markdown .footnote-ref {
2018-09-19 12:06:13 +00:00
font-size: 0.7em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .navigation {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: column;
-moz-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
padding: 2em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .navigation div {
2018-09-19 12:06:13 +00:00
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
margin-top: 1em;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .navigation .icon {
2018-09-19 12:06:13 +00:00
width: 16px;
height: 16px;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .navigation a {
2018-09-19 12:06:13 +00:00
width: 250px;
margin: 0 1em;
text-align: center;
font-style: italic;
color: #313537;
}
section.main .content .share,
section.main .content .share div {
display: -webkit-flex;
display: -moz-flex;
display: -ms-flexbox;
display: -ms-flex;
display: flex;
-webkit-flex-direction: row;
-moz-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;
-webkit-align-items: center;
-moz-align-items: center;
-ms-align-items: center;
align-items: center;
justify-content: center;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .share {
2018-09-19 12:06:13 +00:00
background-color: rgba(152, 152, 152, 0.07);
padding: 1em 0;
2017-10-16 13:33:26 +00:00
}
2018-09-19 12:06:13 +00:00
2017-10-16 13:33:26 +00:00
section.main .content .share a {
2018-09-19 12:06:13 +00:00
margin: 0 6px;
2017-10-16 13:33:26 +00:00
}
/* Fonts */
2018-09-19 12:06:13 +00:00
.wf-raleway-n4-active body,
2017-10-16 13:33:26 +00:00
.wf-raleway-n4-active section.header nav ul li,
.wf-raleway-n7-active section.main .content .page-heading,
.wf-raleway-n2-active section.main .container.f04 .content .num,
.wf-raleway-n7-active section.main .content .markdown h1,
.wf-raleway-n7-active section.main .content .markdown h2,
.wf-raleway-n7-active section.main .content .markdown h3,
.wf-raleway-n7-active section.main .content .markdown h4,
.wf-raleway-n7-active section.main .content .markdown h5,
.wf-raleway-n7-active section.main .content .markdown h6 {
2018-09-19 12:06:13 +00:00
font-family: 'Raleway';
2017-10-16 13:33:26 +00:00
}
.wf-merriweather-n3-active section.main .content .markdown {
2018-09-19 12:06:13 +00:00
font-family: 'Merriweather';
2017-10-16 13:33:26 +00:00
}
.wf-ubuntu-mono-n4-active section.main .content .markdown code,
.wf-ubuntu-mono-n4-active section.main .content .markdown pre {
2018-09-19 12:06:13 +00:00
font-family: 'Ubuntu Mono';
2017-10-16 13:33:26 +00:00
}
2017-11-13 22:07:34 +00:00
2018-09-19 12:06:13 +00:00
.book-recommendations {}
2017-11-15 14:13:10 +00:00
2017-11-22 22:12:27 +00:00
span.recommended {
2018-09-19 12:06:13 +00:00
padding: 3px 10px;
background-color: #ffc;
font-size: 82%;
color: #f66;
2017-11-22 22:12:27 +00:00
}
.amazon {
2018-09-19 12:06:13 +00:00
float: right;
margin-left: 1em;
2018-03-19 09:43:38 +00:00
}
ul#taxonomy-items {
2018-09-19 12:06:13 +00:00
text-align: justify;
2018-03-19 09:43:38 +00:00
}
.taxonomy-item {
2018-09-19 12:06:13 +00:00
display: inline-block;
margin-right: 1em;
2018-09-20 11:59:20 +00:00
}