55 lines
870 B
CSS
55 lines
870 B
CSS
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
width: 100%;
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
background: #111;
|
|
font-size: 16px;
|
|
color: white;
|
|
}
|
|
|
|
#cover {
|
|
width: 100%;
|
|
height: 100%;
|
|
object-fit: contain;
|
|
border-radius: 12px;
|
|
}
|
|
|
|
#overlay {
|
|
position: fixed;
|
|
top: 5%;
|
|
left: 5%;
|
|
width: 90%;
|
|
height: 90%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
padding-bottom: 3%;
|
|
text-shadow: 0 0 10px black;
|
|
}
|
|
|
|
/* Text glow */
|
|
#overlay h1, #overlay h2 {
|
|
text-shadow:
|
|
0 0 2px black,
|
|
0 0 4px black,
|
|
0 0 8px black;
|
|
color: #fff;
|
|
margin: 3px 0;
|
|
}
|
|
|
|
h1 {
|
|
margin: 5px 0;
|
|
font-size: 0.69rem;
|
|
}
|
|
|
|
h2 {
|
|
margin: 5px 0;
|
|
font-weight: normal;
|
|
font-size: 0.5rem;
|
|
}
|