You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
966 B
CSS
67 lines
966 B
CSS
:root {
|
|
--text:rgb(44, 44, 44);
|
|
--wireframe:#202020;
|
|
--background:#FF6347;
|
|
}
|
|
body{
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: var(--background);
|
|
}
|
|
.container {
|
|
display: flex;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
margin: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.container > * {
|
|
flex-basis: 50%;
|
|
margin: 0;
|
|
}
|
|
|
|
.atlas {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
border-right: solid 1px var(--wireframe);
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
height: 100px;
|
|
width: 100%;
|
|
border-top: solid 1px var(--wireframe);
|
|
}
|
|
|
|
.libretto{
|
|
|
|
|
|
overflow-y: scroll;
|
|
}
|
|
.libretto > * {
|
|
border-bottom: solid 1px var(--wireframe);
|
|
}
|
|
h3{
|
|
font-weight: normal;
|
|
}
|
|
h4{
|
|
text-transform: uppercase;
|
|
font-weight: normal;
|
|
}
|
|
|
|
header{
|
|
text-align: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.index {
|
|
display: none;
|
|
}
|
|
|
|
section{
|
|
height: 100vh;
|
|
} |