44 lines
644 B
Sass
44 lines
644 B
Sass
@use "../nav/nav"
|
|
@use "../about/about"
|
|
@use "../index"
|
|
|
|
.reader
|
|
z-index: 9999
|
|
font-family: Neuton, serif
|
|
background: rgba(0,0,0,0.5)
|
|
width: 100vw
|
|
height: 100vh
|
|
position: fixed
|
|
top: 0
|
|
left: 0
|
|
|
|
p
|
|
font-size: large
|
|
|
|
display: flex
|
|
|
|
> article
|
|
display: flex
|
|
flex-direction: column
|
|
align-items: center
|
|
border-radius: 15px
|
|
margin: auto
|
|
padding: 15px
|
|
overflow-y: scroll
|
|
background: white
|
|
color: black
|
|
height: 90vh
|
|
max-width: 600px
|
|
|
|
.external-link
|
|
color: inherit !important
|
|
|
|
.row
|
|
margin: 30px 0
|
|
display: flex
|
|
flex-direction: row
|
|
justify-content: center
|
|
|
|
.row>*
|
|
width: 50%
|