2026-02-21 23:09:34 +00:00
|
|
|
// Bootstrap customizations
|
|
|
|
|
|
|
|
|
|
$container-max-widths: (
|
|
|
|
|
sm: 540px,
|
|
|
|
|
md: 720px,
|
|
|
|
|
lg: 960px,
|
|
|
|
|
xl: 960px,
|
|
|
|
|
xxl: 960px
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
@import "bootstrap/scss/bootstrap.scss";
|
|
|
|
|
|
2026-03-24 00:08:51 +00:00
|
|
|
// Navbar
|
|
|
|
|
|
|
|
|
|
.navbar-site-visit {
|
|
|
|
|
display: inline-block;
|
|
|
|
|
line-height: 2em;
|
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-21 01:01:24 +00:00
|
|
|
// Post list
|
2026-03-04 11:33:39 +00:00
|
|
|
|
|
|
|
|
.postlist .post img {
|
|
|
|
|
max-width: 300px;
|
|
|
|
|
height: auto;
|
|
|
|
|
max-height: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-21 01:01:24 +00:00
|
|
|
.postlist .post-date {
|
|
|
|
|
font-size: 0.9rem;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-25 10:09:57 +00:00
|
|
|
// Large editor
|
|
|
|
|
//
|
|
|
|
|
// Used for edit canvases which take up the entire window
|
2026-03-21 01:01:24 +00:00
|
|
|
|
2026-03-25 10:09:57 +00:00
|
|
|
.large-editor {
|
2026-03-21 01:01:24 +00:00
|
|
|
height: 100vh;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-25 10:09:57 +00:00
|
|
|
.large-editor main {
|
2026-03-21 01:01:24 +00:00
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-25 10:09:57 +00:00
|
|
|
// Post form
|
|
|
|
|
|
|
|
|
|
// Post edit page styling
|
|
|
|
|
|
2026-03-21 01:01:24 +00:00
|
|
|
.post-edit-page .post-form {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-edit-page .post-form .row {
|
|
|
|
|
flex: 1;
|
|
|
|
|
display: flex;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-edit-page .post-form .col-md-9 {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.post-edit-page .post-form textarea {
|
|
|
|
|
flex: 1;
|
|
|
|
|
resize: vertical;
|
|
|
|
|
min-height: 300px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2026-03-04 11:33:39 +00:00
|
|
|
.show-upload figure img {
|
|
|
|
|
max-width: 100vw;
|
|
|
|
|
height: auto;
|
|
|
|
|
max-height: 70vh;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.upload-progressbar {
|
|
|
|
|
width: 150px;
|
2026-02-20 23:22:10 +00:00
|
|
|
}
|