melpomene/comic_reader.css

123 lines
2.0 KiB
CSS
Raw Normal View History

2023-04-15 13:12:49 +02:00
#reader-frame {
overflow: hidden;
position: relative;
}
#reader-pages {
position: absolute;
flex-direction: row;
left: 0px;
right: 0px;
transition: all 1.5s ease;
}
#reader-pages > img {
display: inline-block;
2023-04-15 18:14:57 +02:00
opacity: 0;
2023-04-15 17:38:46 +02:00
transition: all 1s cubic-bezier(.9,.03,.69,.22); /* ease-in quartic */
2023-04-15 13:12:49 +02:00
flex-shrink: 0;
}
#focus-overlay, #focus-overlay * {
transition: all 1.5s ease;
}
#focus-overlay, #nav-controls {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: grid;
grid-template-areas:
"left top right"
"left center right"
"left bottom right";
}
#focus-overlay {
grid-template-columns: 50% auto 50%;
grid-template-rows: 50% auto 50%;
}
#nav-controls {
2023-04-16 22:24:59 +02:00
grid-template-columns: 33% 0 1fr;
2023-04-15 13:12:49 +02:00
grid-template-rows: auto;
}
#nav-controls > div {
cursor: pointer;
}
.top {
grid-area: top;
}
.left {
grid-area: left;
}
.right {
grid-area: right;
}
.top {
grid-area: top;
}
.bottom {
grid-area: bottom;
}
#focus-overlay > *:not(.center) {
background-color: rgba(0, 0, 0, 0.85);
}
#focus-overlay > .center {
box-shadow: inset 0px 0px 5px 5px rgba(0, 0, 0, 0.85);
}
2023-04-16 22:24:59 +02:00
#help-menu{
font-size: 120%;
display: flex;
flex-direction: column;
color: white;
background-color: rgba(0,0,0,0.8)
border: 0.1em solid black;
height: 100%;
justify-content: end;
box-sizing: border-box;
align-items: end;
}
#help-menu > #help-controls {
display: grid;
padding: 0 1em 1em 0;
background-color: rgba(0,0,0,0.5);
z-index: 1;
opacity: 0;
transition: all 1.5s linear;
border: white solid;
border-width: 1px 0 0 1px;
border-radius: 0.3em 0 0 0;
}
#help-menu > #help-controls:hover {
opacity: 1;
transition: all 0.3s linear;
}
#help-menu > #help-controls > div {
margin-top: 1em;
text-align: end;
}
.key {
display: inline;
margin: 0 0.5em;
border: 1px white solid;
padding: 0 0.1em;
border-radius: 0.2em;
}