35 lines
525 B
SCSS
35 lines
525 B
SCSS
|
#ascroll {
|
||
|
font-family: "Noton Sans";
|
||
|
width: 100vw;
|
||
|
|
||
|
h1 {
|
||
|
margin: 4px;
|
||
|
margin-top: 32px;
|
||
|
margin-bottom: 64px;
|
||
|
font-size: 24px;
|
||
|
letter-spacing: 1px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
.player {
|
||
|
position: absolute;
|
||
|
display: none;
|
||
|
width: 100vw;
|
||
|
height: auto;
|
||
|
//transition: opacity 0.4s;
|
||
|
|
||
|
}
|
||
|
.annotation {
|
||
|
.frame {
|
||
|
img {
|
||
|
width: 100vw;
|
||
|
height: auto;
|
||
|
}
|
||
|
}
|
||
|
.text {
|
||
|
margin: 20px 20px;
|
||
|
font-size: 22px;
|
||
|
line-height: 26px;
|
||
|
}
|
||
|
}
|
||
|
}
|