2023-02-11 15:27:15 +01:00
|
|
|
#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;
|
|
|
|
}
|
2023-05-07 22:39:34 +02:00
|
|
|
.ignore-rtl {
|
|
|
|
direction: ltr !important;
|
|
|
|
text-align: left !important;
|
|
|
|
}
|
2023-04-20 18:34:58 +02:00
|
|
|
|
|
|
|
.align-top {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
.align-center-right {
|
|
|
|
position: absolute;
|
|
|
|
right: 0;
|
|
|
|
top: 50%;
|
|
|
|
}
|
2023-04-22 14:08:47 +02:00
|
|
|
|
|
|
|
.align-center-left {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
|
2023-04-20 18:34:58 +02:00
|
|
|
.align-bottom {
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
2023-05-03 23:07:51 +02:00
|
|
|
|
|
|
|
.btn-group > label:first-of-type {
|
|
|
|
border-top-left-radius: 0.25rem !important;
|
|
|
|
border-bottom-left-radius: 0.25rem !important;
|
|
|
|
}
|
2023-05-07 22:39:34 +02:00
|
|
|
|
|
|
|
.margin-auto-parent {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.margin-center {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|