2017-10-14 05:16:45 +02:00
|
|
|
html, body {
|
2017-10-14 20:00:28 +02:00
|
|
|
line-height: 1.5;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-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-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;
|
|
|
|
}
|
|
|
|
|
|
|
|
#about {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
.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 {
|
|
|
|
word-break: break-all;
|
2017-08-07 21:25:15 +02:00
|
|
|
word-wrap: break-word;
|
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;
|
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 {
|
|
|
|
margin-bottom: 18px;
|
|
|
|
}
|
|
|
|
|
2015-03-21 05:15:06 +01:00
|
|
|
|
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-14 20:00:28 +02:00
|
|
|
button {
|
|
|
|
font: inherit;
|
|
|
|
font-family: inherit;
|
|
|
|
color: inherit;
|
|
|
|
}
|
|
|
|
|
2015-11-18 23:44:37 +01:00
|
|
|
.btn {
|
2017-10-14 20:00:28 +02:00
|
|
|
border: 1px solid transparent;
|
|
|
|
background-color: #424242;
|
|
|
|
font-size: 1em;
|
|
|
|
line-height: 1.5em;
|
|
|
|
white-space: normal;
|
|
|
|
cursor: pointer;
|
|
|
|
padding: 8px 12px;
|
|
|
|
border-radius: 4px;
|
|
|
|
padding-left: 2.5em;
|
2015-03-21 04:36:50 +01:00
|
|
|
margin: 8px;
|
2015-03-21 03:09:13 +01:00
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
|
|
|
|
-webkit-backface-visibility: hidden;
|
|
|
|
backface-visibility: hidden;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
position: relative;
|
|
|
|
-webkit-transition-duration: 0.3s;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
}
|
2017-03-05 06:43:51 +01:00
|
|
|
|
2015-11-18 23:44:37 +01:00
|
|
|
.btn:before {
|
2016-01-08 01:38:27 +01:00
|
|
|
content: "💫";
|
2015-03-21 03:09:13 +01:00
|
|
|
position: absolute;
|
2015-03-21 03:11:55 +01:00
|
|
|
left: 1em;
|
2015-03-21 03:09:13 +01:00
|
|
|
padding: 0 1px;
|
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
|
|
|
-webkit-transition-duration: 0.3s;
|
|
|
|
transition-duration: 0.3s;
|
|
|
|
-webkit-transition-property: transform;
|
|
|
|
transition-property: transform;
|
|
|
|
-webkit-transition-timing-function: ease-out;
|
|
|
|
transition-timing-function: ease-out;
|
|
|
|
}
|
2017-03-05 06:43:51 +01:00
|
|
|
|
2015-11-18 23:44:37 +01:00
|
|
|
.btn:hover:before, .btn:focus:before, .btn:active:before {
|
2015-03-21 03:09:13 +01:00
|
|
|
-webkit-transform: scale(1.3) translateZ(0);
|
|
|
|
transform: scale(1.3) translateZ(0);
|
2017-01-27 06:11:45 +01:00
|
|
|
}
|
|
|
|
|
2017-10-04 11:19:29 +02:00
|
|
|
.contents-list {
|
2017-10-14 05:16:45 +02:00
|
|
|
color: white;
|
|
|
|
border: 1px solid black;
|
2017-10-15 02:32:45 +02:00
|
|
|
background-color: #383838;
|
2017-10-14 05:16:45 +02:00
|
|
|
padding: 14px;
|
|
|
|
font-family: "Montserrat";
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1em;
|
|
|
|
border:1px solid rgba(255, 255, 255, 0);
|
|
|
|
transition:all .5s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar a {
|
|
|
|
text-decoration: none;
|
2017-10-04 11:19:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.contents-list:hover {
|
2017-10-14 05:16:45 +02:00
|
|
|
color: black;
|
|
|
|
font-size: 1.05em;
|
|
|
|
background-color: #449d44;
|
|
|
|
border:1px solid black;
|
2017-10-04 11:19:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.contents-list:before {
|
2017-10-14 05:16:45 +02:00
|
|
|
content: "📼";
|
|
|
|
padding-right: 1em;
|
2017-10-04 11:19:29 +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;
|
|
|
|
font-size: 90%;
|
|
|
|
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%;
|
|
|
|
}
|