Checkpoint current interactive fiction state
This commit is contained in:
@@ -0,0 +1,556 @@
|
||||
/* @font-face {
|
||||
font-family: "Quattrocento";
|
||||
font-style: normal;
|
||||
src: url("Quattrocento-Regular.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Quattrocento";
|
||||
font-weight: bold;
|
||||
src: url("Quattrocento-Bold.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: normal;
|
||||
src: url("OpenSans-VariableFont_wdth,wght.ttf");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "Open Sans";
|
||||
font-style: italic;
|
||||
src: url("OpenSans-Italic-VariableFont_wdth,wght.ttf");
|
||||
} */
|
||||
|
||||
@font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style: normal;
|
||||
src: url("./EBGaramond12-Regular.otf");
|
||||
}
|
||||
@font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style: italic;
|
||||
src: url("./EBGaramond12-Italic.otf");
|
||||
}
|
||||
|
||||
/* @font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style: normal;
|
||||
font-weight: normal;
|
||||
src: url("./EBGaramond-Regular.otf") format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style:italic;
|
||||
font-weight: normal;
|
||||
src: url("./EBGaramond-Italic.otf") format("opentype");
|
||||
} */
|
||||
|
||||
/* @font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style: normal;
|
||||
font-weight: bold;
|
||||
src: url("./EBGaramond-Bold.otf") format("opentype");
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: "EB Garamond";
|
||||
font-style: italic;
|
||||
font-weight: bold;
|
||||
src: url("./EBGaramond-BoldItalic.otf") format("opentype");
|
||||
} */
|
||||
|
||||
html {
|
||||
font-family: 'EB Garamond', sans-serif;
|
||||
/* font-kerning: normal; */
|
||||
/* font-variant-ligatures: common-ligatures historical-ligatures; */
|
||||
/* font-variant-numeric: oldstyle-nums; */
|
||||
font-feature-settings: 'kern' on, 'liga' on, 'onum' on, 'dlig' on, 'clig' on, 'calt' on, 'hlig' off, 'swsh' on, 'locl' off;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
sup {
|
||||
font-feature-settings: "sup" on;
|
||||
/* vertical-align: inherit; */
|
||||
font-size: inherit;
|
||||
}
|
||||
|
||||
/* sub {
|
||||
font-feature-settings: "subs" on;
|
||||
} */
|
||||
|
||||
double {
|
||||
font-size: 2rem;
|
||||
vertical-align: -10%;
|
||||
opacity: 0.8;
|
||||
}
|
||||
|
||||
double.separator {
|
||||
display: block;
|
||||
margin: 2rem auto 3rem auto;
|
||||
}
|
||||
|
||||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
background-image: url('brown-wooden-flooring.jpg');
|
||||
background-position: center center;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
body.switched {
|
||||
transition: color 0.6s, background-color 0.6s;
|
||||
}
|
||||
|
||||
:root {
|
||||
font-size: calc(var(--book-height)/(34 * 1.5));
|
||||
--img-aspect-ratio: 1.613;
|
||||
--aspect-ratio: min(var(--viewport-aspect-ratio), var(--img-aspect-ratio));
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0.8rem;
|
||||
text-align: center;
|
||||
text-transform:uppercase;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
h2.chapter-heading {
|
||||
font-style: italic;
|
||||
margin: 2rem auto 3rem auto;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.header {
|
||||
padding-top: 3rem;
|
||||
padding-bottom: 3rem;
|
||||
}
|
||||
|
||||
/*
|
||||
Built-in class:
|
||||
# author: Name
|
||||
*/
|
||||
.byline {
|
||||
font-feature-settings: "smcp";
|
||||
}
|
||||
|
||||
.subtitle {
|
||||
font-feature-settings: "scmp" off;
|
||||
}
|
||||
|
||||
.separator {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*
|
||||
Enables <iframe> support work on itch.io when using mobile iOS
|
||||
*/
|
||||
.outerContainer {
|
||||
position: absolute;
|
||||
display: block;
|
||||
display: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
overflow: scroll;
|
||||
overflow-x: hidden;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
margin-top: 24px;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 980px) {
|
||||
.outerContainer {
|
||||
margin-top: 44px;
|
||||
background-size: cover;
|
||||
background-repeat: no-repeat;
|
||||
}
|
||||
}
|
||||
|
||||
p, #ruler,#indent {
|
||||
font-size: 1.2rem;
|
||||
line-height: 1.2;
|
||||
color: rgba(0,0,0,0.9);
|
||||
margin-block-end: 0;
|
||||
margin-block-start: 0;
|
||||
/* text-indent: 1.5em; */
|
||||
/* text-align: justify; */
|
||||
/* hyphens: manual; */
|
||||
}
|
||||
|
||||
a {
|
||||
transition: color 0.6s;
|
||||
color: #333;
|
||||
font-style: italic;
|
||||
text-decoration-thickness: 1px;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: black;
|
||||
transition: color 0.1s;
|
||||
}
|
||||
|
||||
strong {
|
||||
color: black;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin: 0 auto;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.drop-cap {
|
||||
font-size: 280%;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.drop-quote {
|
||||
font-size: 180%;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
|
||||
cap {
|
||||
font-feature-settings: "smcp";
|
||||
}
|
||||
|
||||
.container .hide {
|
||||
opacity: 0.0;
|
||||
}
|
||||
|
||||
.container .invisible {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.container > *, .container > p > * {
|
||||
opacity: 1.0;
|
||||
transition: opacity 0.5s;
|
||||
}
|
||||
|
||||
#choices {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
width: calc(var(--book-width) * 0.39)px;
|
||||
}
|
||||
|
||||
#choices *:first-child {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
|
||||
#choices ol.categorized {
|
||||
list-style-type: lower-alpha;
|
||||
}
|
||||
|
||||
/*
|
||||
Class applied to all choices
|
||||
(Will always appear inside <p> element by default.)
|
||||
*/
|
||||
li.choice {
|
||||
text-align: center;
|
||||
line-height: 1.7rem;
|
||||
}
|
||||
|
||||
ol.choice {
|
||||
position: relative;
|
||||
/* list-style-position: inside; To make sure the number is inside the li */
|
||||
counter-reset: item; /* Set a counter */
|
||||
padding-inline-start: 3rem;
|
||||
}
|
||||
|
||||
/* ol.choice li::before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
content: "............................................................................";
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-indent: 1.5em;
|
||||
} */
|
||||
|
||||
/*
|
||||
Class applied to first choice
|
||||
*/
|
||||
:not(.choice)+.choice {
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
/*
|
||||
Class applied to choice links
|
||||
*/
|
||||
.choice a {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
/*
|
||||
Built-in class:
|
||||
The End # CLASS: end
|
||||
*/
|
||||
.end {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
color: black;
|
||||
padding-top: 2rem;
|
||||
padding-bottom: 2rem;
|
||||
}
|
||||
|
||||
#controls {
|
||||
z-index: 4;
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
right: 0;
|
||||
left: 0;
|
||||
top: -0.6rem;
|
||||
user-select: none;
|
||||
transition: color 0.6s, background 0.6s;
|
||||
}
|
||||
|
||||
#controls [disabled] {
|
||||
color: #999;
|
||||
}
|
||||
|
||||
#controls input[type=range] {
|
||||
vertical-align: middle;
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
width: 5rem;
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
height: 0.5rem;
|
||||
background-color: transparent;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid black;
|
||||
border-radius: 0.25rem;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
#controls input::-webkit-slider-thumb {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
height: 0.5rem;
|
||||
width: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
background-color: rgba(0,0,0,0.9);
|
||||
border: none;
|
||||
/* slider progress trick */
|
||||
box-shadow: -407px 0 0 400px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
#controls input::-webkit-runnable-track {
|
||||
-webkit-appearance: none;
|
||||
appearance: none;
|
||||
height: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
#controls>a:not(:last-of-type):after, #controls>span::after {
|
||||
content: " | ";
|
||||
}
|
||||
|
||||
#book {
|
||||
position: relative;
|
||||
width: var(--book-width);
|
||||
height: var(--book-height);
|
||||
background-image: url('book-3057904.png');
|
||||
background-size: contain; /* Changed from cover to contain */
|
||||
background-position: center;
|
||||
background-repeat: no-repeat; /* Prevents repeating the image when aspect ratio doesn't match */
|
||||
perspective: 500px;
|
||||
perspective-origin: 50% 50%;
|
||||
}
|
||||
|
||||
#page_left, #page_right {
|
||||
position: absolute;
|
||||
top: 5%; /* Adjust these values as necessary */
|
||||
bottom: 10%;
|
||||
width: 39%;
|
||||
box-sizing: border-box;
|
||||
padding: 0 3rem 1rem 1rem;
|
||||
/* border: 1px dotted rgba(200,200,200,1); */
|
||||
overflow: visible;
|
||||
overflow-y: scroll;
|
||||
opacity: 0.95;
|
||||
mix-blend-mode: darken;
|
||||
}
|
||||
|
||||
#story {
|
||||
overflow-x: visible;
|
||||
}
|
||||
|
||||
/* #story p span {
|
||||
font-feature-settings: 'kern' on, 'liga' on, 'onum' on, 'clig' on, 'hlig' on;
|
||||
} */
|
||||
|
||||
#page_left {
|
||||
left: 11.5%;
|
||||
}
|
||||
|
||||
#page_right {
|
||||
/* background-color: rgba(200,200,200,0.5); */
|
||||
right: 7%;
|
||||
height: calc(28 * 1.2 * 1.2rem);
|
||||
padding-bottom: 0;
|
||||
/* transform: translateX(-1%) translateY(2%) rotateX(0deg) rotateY(-1deg) rotateZ(0deg); */
|
||||
}
|
||||
|
||||
|
||||
/* ===== Scrollbar CSS ===== */
|
||||
/* Firefox */
|
||||
* {
|
||||
scrollbar-width: auto;
|
||||
scrollbar-color: #000000 rgba(255,255,255,0);
|
||||
}
|
||||
|
||||
/* Chrome, Edge, and Safari */
|
||||
*::-webkit-scrollbar {
|
||||
width: calc(1rem/4);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-track {
|
||||
background: rgba(255,255,255,0.0);
|
||||
}
|
||||
|
||||
*::-webkit-scrollbar-thumb {
|
||||
background-color: #000000;
|
||||
border-radius: calc(1rem/4/2);
|
||||
border: none;
|
||||
}
|
||||
|
||||
.fade-in {
|
||||
animation: fadeIn ease 1s;
|
||||
-webkit-animation: fadeIn ease 1s;
|
||||
-moz-animation: fadeIn ease 1s;
|
||||
-o-animation: fadeIn ease 1s;
|
||||
-ms-animation: fadeIn ease 1s;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
0% {opacity:0;}
|
||||
100% {opacity:1;}
|
||||
}
|
||||
|
||||
@-moz-keyframes fadeIn {
|
||||
0% {opacity:0;}
|
||||
100% {opacity:1;}
|
||||
}
|
||||
|
||||
@-webkit-keyframes fadeIn {
|
||||
0% {opacity:0;}
|
||||
100% {opacity:1;}
|
||||
}
|
||||
|
||||
@-o-keyframes fadeIn {
|
||||
0% {opacity:0;}
|
||||
100% {opacity:1;}
|
||||
}
|
||||
|
||||
@-ms-keyframes fadeIn {
|
||||
0% {opacity:0;}
|
||||
100% {opacity:1;}
|
||||
}
|
||||
|
||||
#versions {
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
right: 12px;
|
||||
font-size: 10px;
|
||||
}
|
||||
|
||||
#preview {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
border: 1px none red;
|
||||
background-color: #fff;
|
||||
box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
|
||||
}
|
||||
|
||||
#preview p {
|
||||
text-indent: 0;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#ruler, #indent {
|
||||
visibility: hidden;
|
||||
position: absolute;
|
||||
top: -8000px;
|
||||
width: auto;
|
||||
display: inline;
|
||||
left: -8000px;
|
||||
text-indent: 0;
|
||||
text-align: left;
|
||||
hyphens: none;
|
||||
margin-block-end: 0;
|
||||
}
|
||||
|
||||
#ruler i {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
#indent {
|
||||
text-indent: 1.5em;
|
||||
}
|
||||
|
||||
#remark {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#lighting {
|
||||
position: absolute;
|
||||
top: -35%;
|
||||
left: -35%;
|
||||
width: 180%;
|
||||
height: 180%;
|
||||
animation: gradient-animation-shrink 1s 1;
|
||||
background: radial-gradient(circle, rgba(255,240,182,0.1) 0%, rgba(255,237,165,0.2) 20%, rgba(0,0,0,0.9) 65%, rgba(0,0,0,0.9) 100%);
|
||||
mix-blend-mode: color-burn;
|
||||
pointer-events: none; /* makes the element ignore mouse events, and pass them to elements underneath */
|
||||
z-index: 999; /* should be high enough to be on top of other elements */
|
||||
}
|
||||
|
||||
@keyframes gradient-animation-grow {
|
||||
0% { width: 180%; height: 180%; left: -35%; top: -35%; }
|
||||
100% { width: 170%; height: 170%; left: -33%; top: -33%; }
|
||||
}
|
||||
|
||||
@keyframes gradient-animation-shrink {
|
||||
0% { width: 170%; height: 170%; left: -33%; top: -33%; }
|
||||
100% { width: 180%; height: 180%; left: -35%; top: -35%; }
|
||||
}
|
||||
Reference in New Issue
Block a user