Stirling-PDF/src/main/resources/static/css/general.css

95 lines
1.5 KiB
CSS
Raw Normal View History

2024-02-11 17:47:00 +01:00
#page-container {
min-height: 100vh;
display: flex;
flex-direction: column;
2024-02-11 17:47:00 +01:00
}
#content-wrap {
flex: 1;
2024-02-11 17:47:00 +01:00
}
#footer {
bottom: 0;
width: 100%;
2024-02-11 17:47:00 +01:00
}
.navbar {
height: auto; /* Adjusts height automatically based on content */
white-space: nowrap; /* Prevents wrapping of navbar contents */
2024-02-11 17:47:00 +01:00
}
/* TODO enable later
.navbar .container {
max-width: 100%; //Allows the container to expand up to full width
margin-left: auto;
margin-right: auto;
}*/
html[dir="ltr"] * {
direction: ltr;
2024-02-11 17:47:00 +01:00
}
html[dir="rtl"] * {
direction: rtl;
text-align: right;
2024-02-11 17:47:00 +01:00
}
.ignore-rtl {
direction: ltr !important;
text-align: left !important;
2024-02-11 17:47:00 +01:00
}
.align-top {
position: absolute;
top: 0;
2024-02-11 17:47:00 +01:00
}
.align-center-right {
position: absolute;
right: 0;
top: 50%;
2024-02-11 17:47:00 +01:00
}
.align-center-left {
position: absolute;
left: 0;
top: 50%;
2024-02-11 17:47:00 +01:00
}
.align-bottom {
position: absolute;
bottom: 0;
2024-02-11 17:47:00 +01:00
}
.btn-group > label:first-of-type {
border-top-left-radius: 0.25rem !important;
border-bottom-left-radius: 0.25rem !important;
2024-02-11 17:47:00 +01:00
}
html[dir="rtl"] input.form-check-input {
position: relative;
margin-left: 0px;
2024-02-11 17:47:00 +01:00
}
html[dir="rtl"] label.form-check-label {
display: inline;
2024-02-11 17:47:00 +01:00
}
.margin-auto-parent {
width: 100%;
display: flex;
2024-02-11 17:47:00 +01:00
}
.margin-center {
margin: 0 auto;
2024-02-11 17:47:00 +01:00
}
#pdf-canvas {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.384);
width: 100%;
2024-02-11 17:47:00 +01:00
}
.fixed-shadow-canvas {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.384);
width: 100%;
2024-02-11 17:47:00 +01:00
}
.shadow-canvas {
box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.384);
2024-02-11 17:47:00 +01:00
}
.hidden {
display: none;
}