2019-03-15 14:53:48 +00:00
|
|
|
/* PAGE STYLES */
|
|
|
|
@import url(https://cdn.jsdelivr.net/gh/tonsky/FiraCode@1.206/distr/fira_code.css);
|
|
|
|
|
2019-12-02 17:11:32 +00:00
|
|
|
* {
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
2019-03-15 14:53:48 +00:00
|
|
|
/* --> BASE STYLES <-- */
|
|
|
|
body {
|
|
|
|
font-family: 'fira code', monospace;
|
|
|
|
color: #1e1e3cff;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
em {
|
|
|
|
font-family: serif;
|
2020-03-11 14:38:46 +00:00
|
|
|
font-size: 1.03em;
|
2019-12-02 12:22:45 +00:00
|
|
|
}
|
|
|
|
|
2019-03-15 14:53:48 +00:00
|
|
|
a, a:visited {
|
|
|
|
color: #1e1e3cff;
|
2019-03-18 22:18:52 +00:00
|
|
|
padding-bottom: 2px;
|
2019-03-15 14:53:48 +00:00
|
|
|
text-decoration: none;
|
2019-03-18 22:18:52 +00:00
|
|
|
border-bottom: 1px #1e1e3c50 dashed;
|
|
|
|
transition: color ease 0.5s, border ease 0.2s;
|
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
|
|
|
border-bottom: 1px #1e1e3cff solid;
|
|
|
|
transition: color ease 0.5s, border ease 0.2s;
|
|
|
|
}
|
|
|
|
|
2019-04-29 21:29:56 +00:00
|
|
|
img {
|
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
hr {
|
|
|
|
border-bottom: thin dotted grey;
|
|
|
|
border-top: none;
|
|
|
|
border-left: none;
|
|
|
|
border-right: none;
|
|
|
|
}
|
|
|
|
|
2019-12-02 17:11:32 +00:00
|
|
|
section {
|
|
|
|
isolation: auto;
|
|
|
|
}
|
|
|
|
|
2019-03-18 22:18:52 +00:00
|
|
|
/* --> LISTS <-- */
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
margin-left: 16px;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
|
|
|
padding: 0.2em 0 0.2em 1em;
|
|
|
|
text-indent: -0.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
li:before {
|
|
|
|
content: "▸";
|
|
|
|
padding-right: 16px;
|
2019-03-15 14:53:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* --> NAVIGATION <-- */
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#primary>span {
|
|
|
|
display: inline-block;
|
2019-03-15 14:53:48 +00:00
|
|
|
color: #1e1e3c33;
|
2019-03-16 16:16:24 +00:00
|
|
|
transition: color ease 0.5s;
|
2019-03-15 14:53:48 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#primary>span:hover {
|
2019-03-15 14:53:48 +00:00
|
|
|
color: #1e1e3cff;
|
|
|
|
transition: color ease 0.1s;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#primary>span.active {
|
2019-03-16 16:16:24 +00:00
|
|
|
color: #1e1e3cff;
|
|
|
|
transition: color 1s ease;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#primary>span::after {
|
|
|
|
display: inline-block;
|
2019-03-16 16:16:24 +00:00
|
|
|
content: attr(data-link);
|
2019-12-02 12:22:45 +00:00
|
|
|
max-width: 0px;
|
|
|
|
overflow: hidden;
|
|
|
|
color: #1e1e3cff;
|
|
|
|
transition: max-width 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#primary>span.active::after {
|
|
|
|
max-width: 10em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#sub {
|
|
|
|
max-height: 0px;
|
2019-12-02 17:11:32 +00:00
|
|
|
margin-left: 1.5em;
|
2019-12-06 15:21:29 +00:00
|
|
|
padding-bottom: 0.5em;
|
2019-12-02 12:22:45 +00:00
|
|
|
overflow: hidden;
|
|
|
|
transition: max-height 0.5s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#sub.active {
|
|
|
|
max-height: 50vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#sub > ul {
|
|
|
|
padding: 0px;
|
|
|
|
margin: 0px;
|
2020-03-08 11:58:53 +00:00
|
|
|
max-height: 0px;
|
2019-12-02 12:22:45 +00:00
|
|
|
overflow: hidden;
|
2020-03-08 11:58:53 +00:00
|
|
|
opacity: 0;
|
|
|
|
transition: opacity 0.5s ease, max-height 0.025s ease;
|
2019-12-02 12:22:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav#sub > ul.active {
|
2020-03-08 11:58:53 +00:00
|
|
|
max-height: 50vh;
|
|
|
|
opacity: 1;
|
2019-03-16 16:16:24 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 17:11:32 +00:00
|
|
|
nav#toTop {
|
|
|
|
position: fixed;
|
|
|
|
display: inline-block;
|
|
|
|
visibility: hidden;
|
|
|
|
top: calc(95vh - 2em);
|
|
|
|
right: 3em;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 0em 0.25em;
|
|
|
|
z-index: 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#toTop.active {
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#toTop > span {
|
|
|
|
display: block;
|
|
|
|
opacity: 0.0;
|
|
|
|
transform: translateY(-2em);
|
2019-12-07 22:23:41 +00:00
|
|
|
background-color: rgba(255,255,255,0.0);
|
|
|
|
padding: 0.3em 0.5em 0.5em;
|
|
|
|
border-radius: 1em;
|
|
|
|
transition: transform ease 0.5s, opacity ease 1s, background-color ease 0.5s 0.5s;
|
2019-12-02 17:11:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nav#toTop > span::after {
|
|
|
|
font-size: 1.25em;
|
|
|
|
content: '△'
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#toTop.active > span {
|
2019-12-07 22:23:41 +00:00
|
|
|
opacity: 0.5;
|
|
|
|
background-color: rgba(255,255,255,0.9);
|
2019-12-02 17:11:32 +00:00
|
|
|
transform: translateY(0em);
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#toTop.active > span:hover {
|
|
|
|
opacity: 1;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2019-03-15 14:53:48 +00:00
|
|
|
h1#menuItem {
|
|
|
|
position: absolute;
|
2019-03-18 22:18:52 +00:00
|
|
|
line-height: inherit;
|
2020-03-08 13:25:11 +00:00
|
|
|
bottom: -500px;
|
2019-03-15 14:53:48 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-03-18 22:18:52 +00:00
|
|
|
font-size: 33vw;
|
2019-03-15 14:53:48 +00:00
|
|
|
opacity: 0;
|
2019-03-18 22:18:52 +00:00
|
|
|
transform: translateY(100px);
|
|
|
|
transform-origin: bottom left;
|
2019-12-02 17:11:32 +00:00
|
|
|
mix-blend-mode: difference;
|
2019-03-15 14:53:48 +00:00
|
|
|
transition: opacity ease-in-out 0.1s, transform ease-in-out 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1#menuItem.active {
|
2019-12-02 17:11:32 +00:00
|
|
|
mix-blend-mode: difference;
|
2019-03-15 14:53:48 +00:00
|
|
|
opacity: 1 !important;
|
2020-03-08 13:25:11 +00:00
|
|
|
transform: translateY(-600px) !important;
|
2019-03-15 14:53:48 +00:00
|
|
|
}
|
|
|
|
|
2019-05-04 15:41:47 +00:00
|
|
|
/* --> AUDIO TOGGLE <-- */
|
|
|
|
span#audioToggle {
|
|
|
|
position: absolute;
|
|
|
|
top: 16px;
|
|
|
|
right: 16px;
|
|
|
|
transition: color ease-in-out 0.1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
span#audioToggle:hover {
|
|
|
|
color: #CECECE;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: color ease-in-out 0.1s;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
span#audioToggle::after {
|
2019-05-04 15:41:47 +00:00
|
|
|
content: '🔇'
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
span#audioToggle.active::after {
|
2019-05-04 15:41:47 +00:00
|
|
|
content: '🔉'
|
|
|
|
}
|
|
|
|
|
2019-03-15 14:53:48 +00:00
|
|
|
/* --> MAINPAGE CONSTRUCTION <-- */
|
2019-12-02 12:22:45 +00:00
|
|
|
div#wrapper {
|
|
|
|
max-width: 95vw;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav#sub > ul {
|
2019-03-16 16:16:24 +00:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-03-18 22:18:52 +00:00
|
|
|
list-style: none !important;
|
2019-03-16 16:16:24 +00:00
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#sub > ul > li {
|
2019-03-16 16:16:24 +00:00
|
|
|
border-left: thin solid #d2d2d8;
|
2019-12-02 12:22:45 +00:00
|
|
|
text-decoration: none;
|
2019-03-16 16:16:24 +00:00
|
|
|
padding: 5px 10px;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#sub > ul > li:before {
|
2019-03-18 22:18:52 +00:00
|
|
|
content: "";
|
|
|
|
padding-right: 16px;
|
|
|
|
}
|
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#sub > ul > li:hover {
|
2019-03-16 16:16:24 +00:00
|
|
|
background: #d2d2d8;
|
|
|
|
cursor: pointer;
|
2019-03-15 14:53:48 +00:00
|
|
|
}
|
2019-03-18 22:18:52 +00:00
|
|
|
|
2019-12-02 12:22:45 +00:00
|
|
|
nav#sub > ul > li > a {
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2019-03-18 22:18:52 +00:00
|
|
|
/* --> SUBCONTENT CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page {
|
2019-03-18 22:18:52 +00:00
|
|
|
display: grid;
|
2019-12-07 21:49:59 +00:00
|
|
|
animation: fadeIn 1s ease;
|
2019-03-18 22:18:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
section.page h1 {
|
|
|
|
margin: 0px;
|
|
|
|
padding: 0px;
|
|
|
|
}
|
|
|
|
|
2019-05-04 14:59:23 +00:00
|
|
|
@media screen and (min-width: 1360px) {
|
2019-04-30 21:41:43 +00:00
|
|
|
body {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
2019-03-18 22:18:52 +00:00
|
|
|
|
2019-04-30 21:41:43 +00:00
|
|
|
/* --> NAVIGATION <-- */
|
|
|
|
nav {
|
2019-12-02 12:22:45 +00:00
|
|
|
margin: 23px 0px 8px;
|
2019-04-30 21:41:43 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
2019-03-18 22:18:52 +00:00
|
|
|
|
2019-04-30 21:41:43 +00:00
|
|
|
nav>span {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav>span.active::after {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> MAINPAGE CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section ul.subMenu {
|
2019-04-30 21:41:43 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> SUBCONTENT CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page {
|
2019-04-30 21:41:43 +00:00
|
|
|
max-width: 1960px;
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
2019-12-06 15:21:29 +00:00
|
|
|
gap: 24px;
|
2019-04-30 21:41:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
section.page h1 {
|
2019-12-06 15:21:29 +00:00
|
|
|
margin-top: 0.25em;
|
|
|
|
margin-bottom: 0.4em;
|
2019-04-30 21:58:26 +00:00
|
|
|
font-size: 6em;
|
|
|
|
line-height: 0.95em;
|
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page div.imgFeat {
|
|
|
|
grid-column: span 4;
|
2019-04-30 21:58:26 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.imgs {
|
2019-04-30 21:58:26 +00:00
|
|
|
grid-column: 4 / span 2;
|
2019-12-02 12:22:45 +00:00
|
|
|
grid-row: 2;
|
2019-04-30 21:58:26 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.imgs>img {
|
2019-04-30 21:58:26 +00:00
|
|
|
max-width: 100%;
|
2019-12-06 15:21:29 +00:00
|
|
|
margin-bottom: 24px;
|
2019-04-30 21:58:26 +00:00
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.text {
|
2019-04-30 21:58:26 +00:00
|
|
|
grid-column: 1 / span 3;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-04 15:41:47 +00:00
|
|
|
@media screen and (max-width: 1359px) {
|
2019-04-30 21:58:26 +00:00
|
|
|
body {
|
|
|
|
font-size: 19px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> NAVIGATION <-- */
|
|
|
|
nav {
|
2019-12-02 12:22:45 +00:00
|
|
|
margin: 23px 0px 8px;
|
2019-04-30 21:58:26 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav>span {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav>span.active::after {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> MAINPAGE CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section ul.subMenu {
|
2019-04-30 21:58:26 +00:00
|
|
|
font-size: 1.5em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> SUBCONTENT CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page {
|
2019-04-30 21:58:26 +00:00
|
|
|
max-width: 1960px;
|
|
|
|
grid-template-columns: repeat(5, 1fr);
|
2019-12-06 15:21:29 +00:00
|
|
|
gap: 24px;
|
2019-04-30 21:58:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
section.page h1 {
|
2019-12-06 15:21:29 +00:00
|
|
|
margin-top: 0.25em;
|
|
|
|
margin-bottom: 0.5em;
|
2019-04-30 21:58:26 +00:00
|
|
|
font-size: 4em;
|
2019-04-30 21:41:43 +00:00
|
|
|
line-height: 0.95em;
|
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page div.imgFeat {
|
|
|
|
grid-column: span 4;
|
2019-04-30 21:41:43 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.imgs {
|
2019-04-30 21:41:43 +00:00
|
|
|
grid-column: 4 / span 2;
|
2019-12-02 12:22:45 +00:00
|
|
|
grid-row: 2
|
2019-04-30 21:41:43 +00:00
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.imgs>img {
|
2019-04-30 21:41:43 +00:00
|
|
|
max-width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page section.text {
|
2019-04-30 21:41:43 +00:00
|
|
|
grid-column: 1 / span 3;
|
|
|
|
grid-row: 2;
|
|
|
|
}
|
2019-03-18 22:18:52 +00:00
|
|
|
}
|
|
|
|
|
2019-05-04 14:59:23 +00:00
|
|
|
@media screen and (max-width: 800px) {
|
2019-04-30 21:41:43 +00:00
|
|
|
body {
|
|
|
|
font-size: 20px;
|
|
|
|
line-height: 24px;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> NAVIGATION <-- */
|
|
|
|
nav {
|
2019-12-02 12:22:45 +00:00
|
|
|
margin: 23px 0px 8px;
|
2019-04-30 21:41:43 +00:00
|
|
|
font-size: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav>span {
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
nav>span.active::after {
|
|
|
|
position: relative;
|
|
|
|
top: 2px;
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* --> MAINPAGE CONSTRUCTION <-- */
|
|
|
|
|
|
|
|
/* --> SUBCONTENT CONSTRUCTION <-- */
|
2019-12-06 15:21:29 +00:00
|
|
|
section.page {
|
2019-04-30 21:41:43 +00:00
|
|
|
display: inherit;
|
2019-05-04 15:41:47 +00:00
|
|
|
max-width: 650px;
|
2019-04-30 21:41:43 +00:00
|
|
|
grid-gap: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section.page h1 {
|
2019-12-06 15:21:29 +00:00
|
|
|
margin-top: 0.35em;
|
|
|
|
margin-bottom: 0.5em;
|
2019-04-30 21:41:43 +00:00
|
|
|
font-size: 3em;
|
|
|
|
line-height: 0.95em;
|
|
|
|
margin: 24px 0 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#teach h1 {
|
|
|
|
font-size: 3em;
|
|
|
|
line-height: 0.75em;
|
|
|
|
margin: 40px 0 48px;
|
|
|
|
}
|
|
|
|
|
2019-03-18 22:18:52 +00:00
|
|
|
}
|
2019-12-07 21:49:59 +00:00
|
|
|
|
|
|
|
/* ANIMATIONS */
|
|
|
|
|
|
|
|
@keyframes fadeIn {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|