2017-10-14 05:16:45 +02:00
|
|
|
html, body {
|
2017-10-14 20:00:28 +02:00
|
|
|
line-height: 1.5;
|
2017-10-18 22:02:04 +02:00
|
|
|
font-size: 16px;
|
2017-10-14 20:00:28 +02:00
|
|
|
color: #888888;
|
|
|
|
background-color: #060606;
|
|
|
|
margin: 0;
|
|
|
|
word-break: break-word;
|
2017-10-14 05:16:45 +02:00
|
|
|
}
|
|
|
|
|
2017-10-09 15:05:58 +02:00
|
|
|
.grid {
|
|
|
|
display: grid;
|
|
|
|
align-content: center;
|
|
|
|
grid-template-areas:
|
|
|
|
"header"
|
|
|
|
"sidebar"
|
|
|
|
"content"
|
2017-10-09 15:17:43 +02:00
|
|
|
"footer";
|
2017-10-09 15:05:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.header {
|
|
|
|
grid-area: header;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
|
|
|
grid-area: content;
|
2017-10-18 22:39:26 +02:00
|
|
|
}
|
|
|
|
|
2017-10-09 15:05:58 +02:00
|
|
|
.sidebar {
|
|
|
|
grid-area: sidebar;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer {
|
|
|
|
grid-area: footer;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2017-10-15 02:32:45 +02:00
|
|
|
@media only screen and (max-width: 999px) {
|
|
|
|
.grid {
|
|
|
|
grid-template-columns: 1fr;
|
|
|
|
grid-template-areas:
|
|
|
|
"header"
|
|
|
|
"sidebar"
|
|
|
|
"content"
|
|
|
|
"footer";
|
2017-10-09 15:16:21 +02:00
|
|
|
}
|
2017-11-28 22:16:50 +01:00
|
|
|
code {
|
|
|
|
word-break: break-all;
|
|
|
|
}
|
2017-10-09 15:05:58 +02:00
|
|
|
}
|
|
|
|
|
2017-10-15 02:32:45 +02:00
|
|
|
@media only screen and (min-width: 1000px) {
|
2017-10-09 15:05:58 +02:00
|
|
|
.grid {
|
|
|
|
grid-gap: 1rem;
|
2017-10-14 05:16:45 +02:00
|
|
|
grid-template-columns: 25% auto;
|
2017-10-09 15:05:58 +02:00
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"sidebar content"
|
|
|
|
"footer footer";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-15 02:32:45 +02:00
|
|
|
@media only screen and (min-width: 1500px) {
|
|
|
|
.grid {
|
|
|
|
max-width: 70%;
|
|
|
|
margin: 0 auto;
|
2017-10-30 12:11:42 +01:00
|
|
|
grid-template-areas:
|
|
|
|
"header header"
|
|
|
|
"sidebar content"
|
|
|
|
"footer footer";
|
2017-10-15 02:32:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-14 05:16:45 +02:00
|
|
|
a {
|
|
|
|
color: #91cf91;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
color: #5cb85c;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:visited {
|
|
|
|
color: #449d44;
|
|
|
|
}
|
|
|
|
|
2017-10-09 15:05:58 +02:00
|
|
|
.license img {
|
|
|
|
max-width: 10em;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2017-03-05 06:43:51 +01:00
|
|
|
h1, h2, h3, h4, h5, h6 {
|
2015-03-21 03:33:41 +01:00
|
|
|
font-family: 'Montserrat', sans-serif;
|
|
|
|
}
|
|
|
|
|
2017-10-09 15:05:58 +02:00
|
|
|
h1 {
|
|
|
|
letter-spacing: 0.1em;
|
|
|
|
font-size: 7vw;
|
|
|
|
}
|
|
|
|
|
2017-10-03 18:35:33 +02:00
|
|
|
h2 {
|
2017-10-15 02:32:45 +02:00
|
|
|
font-size: 1.5em;
|
|
|
|
margin: 5px 8px 8px 8px;
|
|
|
|
}
|
|
|
|
|
2017-10-15 03:38:36 +02:00
|
|
|
.heading {
|
2017-10-15 02:32:45 +02:00
|
|
|
font-size: 2em;
|
|
|
|
margin: 6px 0px 12px 0px;
|
2017-10-09 15:05:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
h3 {
|
2017-10-14 05:16:45 +02:00
|
|
|
font-size: 1.5em;
|
2017-10-03 18:35:33 +02:00
|
|
|
}
|
|
|
|
|
2018-02-10 09:31:48 +01:00
|
|
|
h4 {
|
|
|
|
font-size: 1.2em;
|
|
|
|
}
|
|
|
|
|
2017-10-03 18:35:33 +02:00
|
|
|
.intro-lead {
|
|
|
|
font-family: 'Montserrat', sans-serif;
|
2017-10-14 05:16:45 +02:00
|
|
|
font-size: 1em;
|
2017-10-03 18:35:33 +02:00
|
|
|
}
|
2017-10-04 11:19:29 +02:00
|
|
|
|
2017-01-23 03:01:16 +01:00
|
|
|
code {
|
2017-10-18 22:02:04 +02:00
|
|
|
padding: 2px 4px;
|
|
|
|
color: #c7254e;
|
|
|
|
background-color: #f9f2f4;
|
|
|
|
border-radius: 4px;
|
2017-08-07 21:25:15 +02:00
|
|
|
word-wrap: break-word;
|
2017-11-28 22:16:50 +01:00
|
|
|
max-width: 800px;
|
2017-11-01 03:57:57 +01:00
|
|
|
white-space: normal;
|
|
|
|
display: inline-block;
|
2017-01-23 03:01:16 +01:00
|
|
|
}
|
|
|
|
|
2015-12-02 02:45:31 +01:00
|
|
|
dd {
|
2017-05-13 06:48:57 +02:00
|
|
|
padding-left: 24px;
|
2015-12-02 02:45:31 +01:00
|
|
|
}
|
|
|
|
|
2015-12-19 05:09:04 +01:00
|
|
|
dt {
|
2017-03-05 06:43:51 +01:00
|
|
|
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
|
2017-11-01 03:57:57 +01:00
|
|
|
word-break: break-all;
|
|
|
|
word-wrap: break-word;
|
|
|
|
white-space: normal;
|
|
|
|
display: inline-block;
|
2015-12-19 05:09:04 +01:00
|
|
|
}
|
|
|
|
|
2017-01-17 03:50:38 +01:00
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2017-03-04 20:34:16 +01:00
|
|
|
width: 100%;
|
2017-01-17 03:50:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.sample-image {
|
2017-10-31 11:32:32 +01:00
|
|
|
margin: 0 auto;
|
2017-01-17 03:50:38 +01:00
|
|
|
margin-bottom: 18px;
|
2017-10-31 11:32:32 +01:00
|
|
|
max-width: 500px;
|
|
|
|
text-align: center;
|
2017-01-17 03:50:38 +01:00
|
|
|
}
|
|
|
|
|
2017-11-05 20:13:29 +01:00
|
|
|
.sample-image-small {
|
|
|
|
margin: 0 auto;
|
|
|
|
margin-bottom: 18px;
|
|
|
|
max-width: 250px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2015-03-21 03:33:41 +01:00
|
|
|
div {
|
2015-11-27 20:19:29 +01:00
|
|
|
font-family: 'Merriweather', serif;
|
2015-11-18 19:40:04 +01:00
|
|
|
color: white;
|
2015-03-21 03:33:41 +01:00
|
|
|
}
|
|
|
|
|
2017-10-18 18:00:37 +02:00
|
|
|
.sidebar a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.recipe, .contents-list {
|
2017-10-18 03:03:04 +02:00
|
|
|
color: white;
|
|
|
|
background-color: #383838;
|
|
|
|
padding: 14px;
|
|
|
|
font-family: "Montserrat";
|
2017-10-18 22:27:54 +02:00
|
|
|
letter-spacing: 0.05em;
|
2017-10-18 03:03:04 +02:00
|
|
|
border: 1px solid black;
|
2017-10-18 03:43:50 +02:00
|
|
|
cursor: pointer;
|
2017-10-18 18:00:37 +02:00
|
|
|
position: relative;
|
|
|
|
padding-left: 2.8em;
|
|
|
|
transition: all .5s ease-out;
|
2017-10-14 20:00:28 +02:00
|
|
|
}
|
|
|
|
|
2017-10-18 22:39:26 +02:00
|
|
|
.contents-list {
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav .heading {
|
|
|
|
word-break: normal;
|
|
|
|
}
|
2017-10-18 23:09:04 +02:00
|
|
|
|
2017-10-18 22:02:04 +02:00
|
|
|
.recipe {
|
|
|
|
display: block;
|
|
|
|
width: 90%;
|
|
|
|
}
|
|
|
|
|
2017-10-18 18:00:37 +02:00
|
|
|
.recipe:hover, .contents-list:hover {
|
2017-10-18 03:03:04 +02:00
|
|
|
background-color: #449d44;
|
2015-03-21 03:09:13 +01:00
|
|
|
}
|
2017-03-05 06:43:51 +01:00
|
|
|
|
2017-10-18 03:03:04 +02:00
|
|
|
.recipe:before {
|
2016-01-08 01:38:27 +01:00
|
|
|
content: "💫";
|
2017-10-18 18:00:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.contents-list:before {
|
|
|
|
content: "📼";
|
|
|
|
}
|
|
|
|
|
|
|
|
.recipe:before, .contents-list:before {
|
2015-03-21 03:09:13 +01:00
|
|
|
position: absolute;
|
2015-03-21 03:11:55 +01:00
|
|
|
left: 1em;
|
2017-10-18 03:03:04 +02:00
|
|
|
padding-right: 1em;
|
2015-03-21 03:09:13 +01:00
|
|
|
}
|
2017-03-05 06:43:51 +01:00
|
|
|
|
2017-10-18 03:03:04 +02:00
|
|
|
.recipe:hover:before, .recipe:focus:before, .recipe:active:before {
|
2017-10-18 03:43:50 +02:00
|
|
|
transform: scale(1.5) translateX(0.1em);
|
|
|
|
transition: 0.5s;
|
2017-10-18 03:03:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.contents-list:hover:before, .contents-list:focus:before, .contents-list:active:before {
|
|
|
|
transform: scale(1.8) translateX(0.3em);
|
2017-10-18 03:43:50 +02:00
|
|
|
transition: 0.5s;
|
2017-10-18 03:03:04 +02:00
|
|
|
}
|
|
|
|
|
2017-01-27 06:11:45 +01:00
|
|
|
.codeblock {
|
|
|
|
font-family: monospace
|
2017-01-27 14:56:21 +01:00
|
|
|
padding: 2px 4px;
|
|
|
|
color: #c7254e;
|
|
|
|
background-color: #f9f2f4;
|
2017-03-05 06:49:49 +01:00
|
|
|
border-radius: 4px;
|
2017-01-27 06:11:45 +01:00
|
|
|
}
|
2017-02-28 15:40:16 +01:00
|
|
|
|
|
|
|
.beware {
|
|
|
|
font-size: 150%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footnote {
|
|
|
|
font-size: 90%;
|
|
|
|
}
|
2017-10-18 22:02:04 +02:00
|
|
|
|
|
|
|
.well {
|
|
|
|
padding: 1em;
|
|
|
|
margin-bottom: 0.5em;
|
|
|
|
background-color: #151515;
|
|
|
|
border: 1px solid #030303;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: inset 0 1px 1px rgba(0,0,0,0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
.hiding {
|
|
|
|
opacity: 0;
|
2018-02-04 20:45:25 +01:00
|
|
|
height: 0;
|
2017-10-18 22:02:04 +02:00
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
2018-02-04 20:45:25 +01:00
|
|
|
position: absolute;
|
|
|
|
left: -999em;
|
2017-10-18 22:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input[type=checkbox]:checked + div {
|
2018-02-04 20:45:25 +01:00
|
|
|
opacity: 1;
|
2017-10-18 22:02:04 +02:00
|
|
|
height: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
transition: opacity .5s linear, height .5s linear;
|
|
|
|
}
|