2020-04-25 09:36:07 +00:00
|
|
|
.intro {
|
|
|
|
display: block;
|
2020-08-17 21:05:18 +00:00
|
|
|
margin-bottom: var(--size-64);
|
2020-04-25 09:36:07 +00:00
|
|
|
p {
|
|
|
|
@include textbox;
|
2020-02-21 11:44:13 +00:00
|
|
|
margin: 0;
|
|
|
|
}
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2020-08-17 21:05:18 +00:00
|
|
|
margin-top: var(--size-32);
|
2020-02-21 11:44:13 +00:00
|
|
|
|
|
|
|
@include touch {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.page-content {
|
|
|
|
@include touch {
|
2020-08-17 21:05:18 +00:00
|
|
|
@include margin-horizontal(var(--size-32));
|
2019-11-10 11:45:15 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-21 11:44:13 +00:00
|
|
|
|
|
|
|
.side-title {
|
|
|
|
position: fixed;
|
|
|
|
transition: all 0.2s ease-in-out;
|
2020-08-17 21:05:18 +00:00
|
|
|
color: var(--colour-text);
|
2020-02-21 11:44:13 +00:00
|
|
|
margin: 0;
|
|
|
|
width: 100vh;
|
|
|
|
bottom: 0;
|
|
|
|
text-align: center;
|
2020-04-25 09:36:07 +00:00
|
|
|
z-index: 0;
|
2020-02-21 11:44:13 +00:00
|
|
|
|
|
|
|
&.side-title--left {
|
|
|
|
transform: rotate(270deg);
|
|
|
|
left: 5%;
|
|
|
|
transform-origin: left;
|
|
|
|
|
|
|
|
@include touch {
|
|
|
|
left: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.side-title--right {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
right: 5%;
|
|
|
|
transform-origin: right;
|
|
|
|
|
|
|
|
@include touch {
|
|
|
|
right: 15px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&.hidden {
|
|
|
|
opacity: 0.0001;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2020-08-17 21:05:18 +00:00
|
|
|
color: var(--colour-text);
|
2020-02-21 11:44:13 +00:00
|
|
|
}
|
2020-07-29 13:02:51 +00:00
|
|
|
|
|
|
|
@include darkMode {
|
2020-08-17 21:05:18 +00:00
|
|
|
color: var(--colour-white);
|
2020-07-29 13:02:51 +00:00
|
|
|
|
|
|
|
a {
|
2020-08-17 21:05:18 +00:00
|
|
|
color: var(--colour-white);
|
2020-07-29 13:02:51 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-21 11:44:13 +00:00
|
|
|
}
|