|
|
@ -6,10 +6,8 @@ html, body { |
|
|
|
body:after { |
|
|
|
font-size: .8em; |
|
|
|
background-color: #EB4377; |
|
|
|
/*color: rgba(223, 183, 180, .3);*/ |
|
|
|
position: fixed; |
|
|
|
width: 100%; |
|
|
|
bottom: 1em; |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
|
|
|
@ -30,7 +28,7 @@ body:after { |
|
|
|
|
|
|
|
#varia { |
|
|
|
line-height: 1.03em; |
|
|
|
position: absolute; |
|
|
|
position: relative; |
|
|
|
top: 10%; |
|
|
|
left: 50%; |
|
|
|
transform: translate(-50%, -50%); |
|
|
@ -40,19 +38,37 @@ body:after { |
|
|
|
text-align: center; |
|
|
|
font-family: alphaClouds; |
|
|
|
mix-blend-mode: exclusion; |
|
|
|
margin: 30px 0; |
|
|
|
} |
|
|
|
|
|
|
|
@supports (-webkit-text-stroke: 1px lightpink) { |
|
|
|
#varia { |
|
|
|
-webkit-text-stroke: 1px lightpink; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.container { |
|
|
|
margin 0 auto; |
|
|
|
} |
|
|
|
|
|
|
|
#leftmostbtn{ |
|
|
|
margin-left: 1em; |
|
|
|
#bookshelf { |
|
|
|
max-width: 90%; |
|
|
|
margin-top: 3em; |
|
|
|
display: block; |
|
|
|
columns: 30rem; |
|
|
|
gap: 1rem; |
|
|
|
} |
|
|
|
|
|
|
|
#bookshelf > div { |
|
|
|
width: 100%; |
|
|
|
break-inside: avoid; |
|
|
|
margin: 10px auto; |
|
|
|
} |
|
|
|
|
|
|
|
#bookshelf > div > a { |
|
|
|
color: black; |
|
|
|
} |
|
|
|
|
|
|
|
button { |
|
|
|
z-index: 10; |
|
|
|
border: 3px solid black; |
|
|
@ -70,9 +86,11 @@ table { |
|
|
|
border-spacing: 0; |
|
|
|
border-collapse: collapse; |
|
|
|
} |
|
|
|
|
|
|
|
tr { |
|
|
|
margin: 0; |
|
|
|
} |
|
|
|
|
|
|
|
td { |
|
|
|
margin:0; |
|
|
|
padding: 0.5em; |
|
|
@ -81,3 +99,10 @@ td { |
|
|
|
border: 1px solid black; |
|
|
|
background-color: #f1f1f1; |
|
|
|
} |
|
|
|
.tdimage { |
|
|
|
padding: 0 |
|
|
|
} |
|
|
|
.tdimage > img { |
|
|
|
width: 100%; |
|
|
|
height: 100%; |
|
|
|
} |
|
|
|