More general and mobile styling improvements

This commit is contained in:
Dominic Ferrando
2025-04-28 09:56:27 -04:00
parent 5e5d50f023
commit eaf5313d5f
+13 -9
View File
@@ -45,16 +45,15 @@ body {
#clavis { #clavis {
display: block; display: block;
width: 300px; max-width: 300px;
margin: 10px auto; margin: 25px auto;
margin-bottom: 50px;
} }
/* BOARD LIST */ /* BOARD LIST */
#boardList { #boardList {
font-size: 14px; font-size: 12pt;
margin: 5px; margin: 10px;
} }
#boardList a { #boardList a {
@@ -69,6 +68,7 @@ body {
/* BOARD */ /* BOARD */
.board-header { .board-header {
margin: 25px auto;
text-align: center; text-align: center;
color: var(--brand-red); color: var(--brand-red);
} }
@@ -276,7 +276,7 @@ body {
.post-img { .post-img {
display: block; display: block;
float: left; float: left;
margin: 4px 12px 4px 0; margin: 8px 8px 8px 0;
cursor: pointer; cursor: pointer;
height: auto; height: auto;
max-width: 50%; max-width: 50%;
@@ -285,7 +285,7 @@ body {
.post-vid { .post-vid {
display: block; display: block;
float: left; float: left;
margin: 4px 12px 4px 0; margin: 8px 8px 8px 0;
height: auto; height: auto;
max-width: 100%; max-width: 100%;
} }
@@ -412,7 +412,7 @@ body {
/* GENERAL LAYOUT */ /* GENERAL LAYOUT */
.container { .container {
width: 600px; max-width: 600px;
margin: auto; margin: auto;
} }
@@ -519,10 +519,14 @@ footer {
.action-bar select, .action-bar select,
.action-bar input, .action-bar input,
.action-bar .link-button { .action-bar .link-button {
width: 100%0px; width: 100%;
} }
.action-refresh { .action-refresh {
flex: 1; flex: 1;
} }
.post-img-full {
max-width: 100%;
}
} }