1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 11:34:21 +00:00
bluelib/examples/index.css

49 lines
974 B
CSS

#body {
background-image: url("Space_Default.jpg");
background-attachment: fixed;
background-size: cover;
padding: 0 16px;
}
@media screen and (max-width: 800px) {
#body {
padding: 0 8px;
}
}
@media screen and (max-width: 400px) {
#body {
padding: 0 4px;
}
}
#body .chapter-1 > .panel,
#body .chapter-2 > .panel,
#body .chapter-3 > .panel,
#body .chapter-4 > .panel,
#body .chapter-5 > .panel,
#body .chapter-6 > .panel,
#body .chapter-7 > .panel,
#body .chapter-8 > .panel,
#body .chapter-9 > .panel {
min-width: 360px;
}
#body .panel .chapter-1 > .panel,
#body .panel .chapter-2 > .panel,
#body .panel .chapter-3 > .panel,
#body .panel .chapter-4 > .panel,
#body .panel .chapter-5 > .panel,
#body .panel .chapter-6 > .panel,
#body .panel .chapter-7 > .panel,
#body .panel .chapter-8 > .panel,
#body .panel .chapter-9 > .panel {
min-width: unset;
}
#body article {
margin: 0 auto;
max-width: 1600px;
}