mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-03-17 13:26:54 +01:00
By making small thumbnails and aligning everything horizontally the space on the screen is used better.
45 lines
555 B
CSS
45 lines
555 B
CSS
#page-container {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
#content-wrap {
|
|
flex: 1;
|
|
}
|
|
|
|
#footer {
|
|
bottom: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
html[lang-direction=ltr] * {
|
|
direction: ltr;
|
|
}
|
|
|
|
html[lang-direction=rtl] * {
|
|
direction: rtl;
|
|
text-align: right;
|
|
}
|
|
|
|
.align-top {
|
|
position: absolute;
|
|
top: 0;
|
|
}
|
|
.align-center-right {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 50%;
|
|
}
|
|
|
|
.align-center-left {
|
|
position: absolute;
|
|
left: 0;
|
|
top: 50%;
|
|
}
|
|
|
|
.align-bottom {
|
|
position: absolute;
|
|
bottom: 0;
|
|
}
|