392 lines
5.4 KiB
CSS
392 lines
5.4 KiB
CSS
body {
|
|
background: #EEF2FF;
|
|
padding-left: 4px;
|
|
padding-right: 4px;
|
|
margin: 0 4px;
|
|
}
|
|
|
|
/* INDEX */
|
|
|
|
#clavis {
|
|
display: block;
|
|
width: 300px;
|
|
margin: 10px auto;
|
|
margin-bottom: 50px;
|
|
}
|
|
|
|
/* BOARD LIST */
|
|
|
|
#boardList {
|
|
font-size: 12px;
|
|
margin: 5px;
|
|
}
|
|
|
|
#boardList a {
|
|
cursor: pointer;
|
|
color: #575F68;
|
|
}
|
|
|
|
#boardList a:hover {
|
|
color: #ff0000;
|
|
}
|
|
|
|
/* BOARD */
|
|
|
|
.board-header {
|
|
text-align: center;
|
|
color: #AF0A0F;
|
|
}
|
|
|
|
.board-header h1 {
|
|
font-weight: bold;
|
|
font-size: 1.8rem;
|
|
margin: 8px;
|
|
margin-top: 12px;
|
|
}
|
|
|
|
.board-header p {
|
|
font-size: .8rem;
|
|
margin: 4px;
|
|
}
|
|
|
|
.board-header img {
|
|
width: 300px;
|
|
}
|
|
|
|
#boardActionBar {
|
|
font-size: 12px;
|
|
}
|
|
|
|
/* THREAD CATALOG */
|
|
|
|
#catalog {
|
|
display: flex;
|
|
margin: 2rem;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.catalog-preview {
|
|
margin: 10px;
|
|
text-align: center;
|
|
padding: 10px;
|
|
width: 250px;
|
|
max-height: 300px;
|
|
overflow: scroll;
|
|
}
|
|
|
|
.catalog-preview h1 {
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.catalog-preview p {
|
|
margin-top: 10px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.catalog-preview-link {
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
color: #0F0C5D;
|
|
}
|
|
|
|
.catalog-preview-img {
|
|
max-width: 95%;
|
|
border: 1px solid #B7C5D9;
|
|
box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.catalog-preview-img-small {
|
|
max-height: 50%;
|
|
}
|
|
|
|
.catalog-preview-img-large {
|
|
max-height: 90%;
|
|
}
|
|
|
|
.catalog-preview-counts {
|
|
display: block;
|
|
font-size: 12px;
|
|
margin-bottom: 5px;
|
|
margin-top: 2.5px;
|
|
}
|
|
|
|
/* NEW THREAD BUTTON/FORM */
|
|
|
|
#newThreadBtn {
|
|
margin-top: 12px;
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
font-weight: bold;
|
|
font-size: 1.2rem;
|
|
color: #34345C;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#newThreadBtn:hover {
|
|
color: #ff0000
|
|
}
|
|
|
|
#newPostForm table {
|
|
margin: auto;
|
|
}
|
|
|
|
#newPostForm button {
|
|
display: block;
|
|
margin-left: auto;
|
|
}
|
|
|
|
#newPostBody {
|
|
width: 270px;
|
|
height: 100px;
|
|
}
|
|
|
|
.new-post-container {
|
|
width: max-content;
|
|
margin: auto;
|
|
margin-top: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.new-post-form-field th {
|
|
border: 1px solid black;
|
|
text-align: left;
|
|
vertical-align: middle;
|
|
padding: 4px;
|
|
background: #98E;
|
|
font-weight: bold;
|
|
font-size: .8rem;
|
|
}
|
|
|
|
.new-post-form-field td {
|
|
display: block;
|
|
margin: 2px;
|
|
}
|
|
|
|
|
|
/* THREAD/POSTS */
|
|
|
|
.thread {
|
|
margin: 2rem;
|
|
}
|
|
|
|
.thread-subject {
|
|
font-weight: bold;
|
|
color: #0F0C5D;
|
|
margin-right: 5px;
|
|
float: left;
|
|
}
|
|
|
|
.post-op {
|
|
margin-bottom: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.post {
|
|
display: inline-block;
|
|
margin: 5x;
|
|
padding: 10px;
|
|
background-color: #D6DAF0;
|
|
border: 1px solid #B7C5D9;
|
|
margin-bottom: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.post-highlighted {
|
|
background: #D6BAD0;
|
|
}
|
|
|
|
.post-header {
|
|
clear: none;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.post-header span {
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.post-author {
|
|
color: #13A82A;
|
|
}
|
|
|
|
.post-img {
|
|
display: block;
|
|
float: left;
|
|
margin: 4px 12px 4px 0;
|
|
cursor: pointer;
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.post-vid {
|
|
display: block;
|
|
float: left;
|
|
margin: 4px 12px 4px 0;
|
|
height: auto;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.post-img-info {
|
|
display: inline-block;
|
|
font-size: 10px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.post-body {
|
|
margin-top: 10px;
|
|
margin-left: 5px;
|
|
clear: none;
|
|
word-wrap: break-word;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.post-num:hover {
|
|
cursor: pointer;
|
|
color: #ff0000;
|
|
}
|
|
|
|
.post-banned-message {
|
|
margin-top: 2px;
|
|
font-weight: bold;
|
|
color: red;
|
|
}
|
|
|
|
.greentext {
|
|
color: #789922
|
|
}
|
|
|
|
.post-filename {
|
|
color: rgb(52, 52, 92);
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.post-filename:hover {
|
|
color: #ff0000;
|
|
}
|
|
|
|
.reply-link {
|
|
color: #D00;
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.reply-link-header {
|
|
color: rgb(52, 52, 92);
|
|
text-decoration: underline;
|
|
cursor: pointer;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.reply-link-header:hover {
|
|
color: #D00;
|
|
}
|
|
|
|
/* ADMIN */
|
|
|
|
.admin-login-container {
|
|
width: max-content;
|
|
margin: auto;
|
|
margin-top: 32px;
|
|
}
|
|
|
|
#adminLoginForm form {
|
|
margin: auto;
|
|
}
|
|
|
|
#adminLoginForm button {
|
|
display: block;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.admin-dialog {
|
|
border: 1px solid #B7C5D9;
|
|
background: #EDEFF7;
|
|
padding: 6px 8px;
|
|
min-width: 160px;
|
|
box-shadow: 2px 2px 4px rgba(0, 0, 0, .25);
|
|
|
|
font-size: 12px;
|
|
color: #000;
|
|
|
|
position: fixed;
|
|
z-index: 2000;
|
|
}
|
|
|
|
.admin-dialog h1 {
|
|
margin: 0 0 8px 0;
|
|
font-size: 14px;
|
|
font-weight: bold;
|
|
color: #AF0A0F;
|
|
text-align: center;
|
|
}
|
|
|
|
.admin-dialog button {
|
|
display: block;
|
|
margin: 5px auto;
|
|
}
|
|
|
|
.admin-dialog-close-btn {
|
|
font-weight: bold;
|
|
margin-top: 20px !important;
|
|
}
|
|
|
|
/* GENERAL LAYOUT */
|
|
|
|
.container {
|
|
width: 600px;
|
|
margin: auto;
|
|
}
|
|
|
|
.box {
|
|
font-size: 12px;
|
|
border: 1px solid black;
|
|
background-color: #eceff6;
|
|
}
|
|
|
|
.box h2 {
|
|
padding: 5px;
|
|
margin: 0;
|
|
background-color: #00007F;
|
|
color: #FFF;
|
|
}
|
|
|
|
.box p {
|
|
padding: 10px;
|
|
}
|
|
|
|
|
|
.warning {
|
|
background: #FFAAAA;
|
|
color: #000;
|
|
border: 1px solid #000;
|
|
padding: 8px;
|
|
margin: 5px 0;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.link-button {
|
|
background: none;
|
|
border: none;
|
|
padding: 0;
|
|
font-size: .8rem;
|
|
color: #34345C;
|
|
cursor: pointer;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.link-button:hover {
|
|
color: #ff0000;
|
|
}
|
|
|
|
hr {
|
|
border: none;
|
|
border-top-width: medium;
|
|
border-top-style: none;
|
|
border-top-color: currentcolor;
|
|
border-top: 1px solid #B7C5D9;
|
|
height: 0;
|
|
clear: left;
|
|
}
|