25 lines
533 B
CSS
25 lines
533 B
CSS
.bg-paper {
|
|
background-image: url('../images/Hunt_paper_side.png');
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position-x: center;
|
|
background-attachment: scroll;
|
|
min-height: 200vh;
|
|
}
|
|
|
|
.list-container {
|
|
padding-top: 20%;
|
|
padding-left: 20%;
|
|
padding-right: 20%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
@media (min-width:300px) {
|
|
.list-container {
|
|
font-size: 0.8rem;
|
|
padding-top: 25%;
|
|
padding-left: 25%;
|
|
padding-right: 20%;
|
|
}
|
|
} |