2024-05-24 15:26:38 +02:00
|
|
|
*
|
|
|
|
{
|
|
|
|
font-size: 2vh;
|
|
|
|
}
|
|
|
|
|
2024-05-09 07:45:07 +02:00
|
|
|
body
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main_panel
|
|
|
|
{
|
|
|
|
position: absolute;
|
2024-05-25 15:36:05 +02:00
|
|
|
width: 130vh;
|
2024-05-09 07:45:07 +02:00
|
|
|
height: 95vh;
|
2024-05-10 16:03:18 +02:00
|
|
|
|
2024-05-09 07:45:07 +02:00
|
|
|
background: #6F7270;
|
2024-05-10 16:03:18 +02:00
|
|
|
|
2024-05-09 07:45:07 +02:00
|
|
|
border: 1px solid #3E392F;
|
2024-05-10 16:03:18 +02:00
|
|
|
border-radius: 0.4vh 0.4vh;
|
2024-05-09 07:45:07 +02:00
|
|
|
|
|
|
|
margin-top: 1.5vh;
|
2024-05-24 20:16:02 +02:00
|
|
|
overflow-y: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar
|
|
|
|
{
|
2024-05-25 15:36:05 +02:00
|
|
|
width: 0.75vh;
|
2024-05-24 20:16:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track
|
|
|
|
{
|
|
|
|
background-color: #C1BFBE;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb
|
|
|
|
{
|
|
|
|
background-color: #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-track
|
|
|
|
{
|
|
|
|
border-radius: 5vh 5vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb:hover
|
|
|
|
{
|
|
|
|
background-color: #555;
|
2024-05-09 07:45:07 +02:00
|
|
|
}
|
|
|
|
|
2024-05-10 16:03:18 +02:00
|
|
|
#upper_panel
|
2024-05-09 07:45:07 +02:00
|
|
|
{
|
2024-05-10 16:03:18 +02:00
|
|
|
margin-left: auto;
|
|
|
|
|
|
|
|
border: 1px solid #3E392F;
|
|
|
|
border-right: none;
|
|
|
|
border-top: none;
|
|
|
|
border-bottom-left-radius: 0.4vh 0.4vh;
|
2024-05-09 07:45:07 +02:00
|
|
|
|
2024-05-10 16:03:18 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: end;
|
|
|
|
padding: 0.25vh;
|
2024-05-24 16:31:38 +02:00
|
|
|
|
|
|
|
width: fit-content;
|
|
|
|
height: 2vh;
|
2024-05-10 16:03:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#upper_panel *
|
|
|
|
{
|
|
|
|
border-collapse: collapse;
|
|
|
|
}
|
|
|
|
|
2024-05-24 19:12:51 +02:00
|
|
|
#upper_panel img + img
|
2024-05-10 16:03:18 +02:00
|
|
|
{
|
2024-05-25 15:36:05 +02:00
|
|
|
margin-left: 0.25vh;
|
2024-05-10 16:06:44 +02:00
|
|
|
}
|
|
|
|
|
2024-05-25 15:35:48 +02:00
|
|
|
#upper_panel img:hover, #close_btn:hover
|
2024-05-10 16:06:44 +02:00
|
|
|
{
|
2024-05-25 15:35:48 +02:00
|
|
|
filter: invert(10%);
|
2024-05-16 21:26:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#panels
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
height: 88.5vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#left_panel, #right_panel
|
|
|
|
{
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
|
|
|
|
padding: 2vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#left_panel
|
|
|
|
{
|
|
|
|
border-right: 1px solid #3E392F;
|
2024-05-20 19:16:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.output + .output
|
|
|
|
{
|
|
|
|
margin-top: 1.5vh;
|
2024-05-20 20:51:06 +02:00
|
|
|
}
|
|
|
|
|
2024-05-22 18:01:15 +02:00
|
|
|
.output:hover
|
|
|
|
{
|
|
|
|
filter: invert(10%);
|
|
|
|
}
|
|
|
|
|
2024-05-22 15:36:46 +02:00
|
|
|
#buttons
|
2024-05-20 20:51:06 +02:00
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0.3vh;
|
2024-05-25 15:36:05 +02:00
|
|
|
right: 0.3vh;
|
2024-05-22 15:36:46 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.btn
|
|
|
|
{
|
|
|
|
width: fit-content;
|
2024-05-20 20:51:06 +02:00
|
|
|
|
|
|
|
padding: 0.3vh;
|
2024-05-25 15:36:05 +02:00
|
|
|
padding-left: 0.9vh;
|
|
|
|
padding-right: 0.9vh;
|
2024-05-22 15:36:46 +02:00
|
|
|
|
2024-05-20 20:51:06 +02:00
|
|
|
background-color: #9E6812;
|
|
|
|
border: 1px solid #3E392F;
|
|
|
|
color: #C1BFBE;
|
|
|
|
border-radius: 0.3vh 0.3vh;
|
2024-05-22 17:27:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.editable
|
|
|
|
{
|
|
|
|
background-color: #9E6812;
|
|
|
|
border: 1px solid #3E392F;
|
|
|
|
color: #C1BFBE;
|
|
|
|
border-radius: 0.3vh 0.3vh;
|
|
|
|
}
|
2024-05-22 18:45:53 +02:00
|
|
|
|
|
|
|
#info_pane
|
|
|
|
{
|
2024-05-24 22:07:19 +02:00
|
|
|
position: absolute;
|
2024-05-22 18:45:53 +02:00
|
|
|
|
|
|
|
width: fit-content;
|
2024-05-24 22:07:19 +02:00
|
|
|
height: fit-content;
|
2024-05-22 18:45:53 +02:00
|
|
|
margin: 0 auto;
|
|
|
|
padding: 5vh;
|
|
|
|
|
2024-05-24 22:07:19 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info_pane *
|
|
|
|
{
|
|
|
|
padding: 0.5vh;
|
2024-05-22 18:45:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#save_btn
|
|
|
|
{
|
|
|
|
margin-top: 2vh;
|
2024-05-24 16:31:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#upload_btn
|
|
|
|
{
|
2024-05-24 21:47:29 +02:00
|
|
|
/*position: absolute;*/
|
2024-05-24 16:31:38 +02:00
|
|
|
padding-top: 1vh;
|
|
|
|
padding-bottom: 1vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upload_popup
|
|
|
|
{
|
2024-05-25 17:19:19 +02:00
|
|
|
z-index: 8;
|
2024-05-24 20:09:45 +02:00
|
|
|
position: absolute;
|
2024-05-24 16:31:38 +02:00
|
|
|
display: none;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: start;
|
|
|
|
|
|
|
|
width: fit-content;
|
2024-05-24 20:09:45 +02:00
|
|
|
height: fit-content;
|
2024-05-24 16:31:38 +02:00
|
|
|
padding: 2vh;
|
|
|
|
|
|
|
|
border: solid 1px #3E392F;
|
|
|
|
border-radius: 0.5vh 0.5vh;
|
|
|
|
background: #6F7270;
|
|
|
|
|
2024-05-24 20:09:45 +02:00
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
2024-05-24 16:31:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#upload_popup div + div
|
|
|
|
{
|
|
|
|
margin-top: 2vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#upload_popup input
|
|
|
|
{
|
|
|
|
margin-top: 1vh;
|
|
|
|
border: 1px solid #3E392F;
|
|
|
|
border-radius: 0.5vh 0.5vh;
|
|
|
|
|
|
|
|
background-color: #C1BFBE;
|
|
|
|
}
|
|
|
|
|
|
|
|
#file_upload_style
|
|
|
|
{
|
|
|
|
margin-top: 200vh;
|
2024-05-24 19:15:57 +02:00
|
|
|
}
|
|
|
|
|
2024-05-24 20:04:18 +02:00
|
|
|
#posts
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
width: fit-content;
|
|
|
|
height: fit-content;
|
|
|
|
align-self: center;
|
2024-05-24 21:47:29 +02:00
|
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2024-05-24 20:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
align-self: flex-start;
|
2024-05-24 21:47:29 +02:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post + .post
|
|
|
|
{
|
2024-05-25 13:01:05 +02:00
|
|
|
border-top: 1px dotted #3E392F;
|
2024-05-24 20:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_info
|
|
|
|
{
|
2024-05-25 15:36:05 +02:00
|
|
|
padding-left: 5vh;
|
2024-05-24 21:47:29 +02:00
|
|
|
|
2024-05-24 20:04:18 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_info *
|
|
|
|
{
|
|
|
|
padding: 0.2vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_image
|
|
|
|
{
|
2024-05-24 21:47:29 +02:00
|
|
|
padding-top: 0.25vh;
|
|
|
|
padding-bottom: 0.25vh;
|
2024-05-25 15:36:05 +02:00
|
|
|
width: 20vh;
|
2024-05-24 20:04:18 +02:00
|
|
|
}
|
|
|
|
|
2024-05-24 19:15:57 +02:00
|
|
|
.post img
|
|
|
|
{
|
|
|
|
max-height: 20vh;
|
2024-05-25 15:36:05 +02:00
|
|
|
max-width: 20vh;
|
2024-05-24 21:47:29 +02:00
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
2024-05-24 20:04:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post img:hover
|
|
|
|
{
|
|
|
|
filter: invert(10%);
|
2024-05-24 22:07:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_desc
|
|
|
|
{
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
padding-top: 1vh;
|
|
|
|
width: 25vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.post_desc_text
|
|
|
|
{
|
|
|
|
height: fit-content;
|
|
|
|
max-height: 15vh;
|
|
|
|
overflow-y: auto;
|
|
|
|
padding-left: 1vw;
|
2024-05-25 14:15:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#image_popup
|
|
|
|
{
|
|
|
|
z-index: 9;
|
|
|
|
position: absolute;
|
|
|
|
|
2024-05-25 15:35:48 +02:00
|
|
|
padding: 2.625vh;
|
2024-05-25 14:15:44 +02:00
|
|
|
|
2024-05-25 14:34:52 +02:00
|
|
|
width: fit-content;
|
|
|
|
height: fit-content;
|
|
|
|
|
2024-05-25 14:15:44 +02:00
|
|
|
max-height: 80%;
|
|
|
|
max-width: 80%;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
|
|
|
|
border: solid 1px #3E392F;
|
|
|
|
border-radius: 0.5vh 0.5vh;
|
|
|
|
background-color: #555;
|
2024-05-25 14:26:48 +02:00
|
|
|
|
|
|
|
display: none;
|
2024-05-25 14:15:44 +02:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
#image_popup img
|
|
|
|
{
|
|
|
|
max-width: 100%;
|
|
|
|
max-height: 100%;
|
2024-05-25 14:34:52 +02:00
|
|
|
|
|
|
|
object-fit: scale-down;
|
2024-05-25 15:35:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#close_btn
|
|
|
|
{
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
height: 2vh;
|
|
|
|
padding: 0.25vh;
|
|
|
|
|
|
|
|
border: 1px solid #3E392F;
|
|
|
|
border-right: none;
|
|
|
|
border-top: none;
|
2024-05-25 16:42:13 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.post_options
|
|
|
|
{
|
|
|
|
height: 2vh;
|
|
|
|
}
|
|
|
|
|
|
|
|
#moderation_popup
|
|
|
|
{
|
|
|
|
z-index: 10;
|
|
|
|
position: absolute;
|
|
|
|
display: none;
|
|
|
|
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
width: fit-content;
|
|
|
|
height: fit-content;
|
|
|
|
padding: 2vh;
|
|
|
|
|
|
|
|
border: solid 1px #3E392F;
|
|
|
|
border-radius: 0.5vh 0.5vh;
|
|
|
|
background: #6F7270;
|
|
|
|
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#moderation_post_title
|
|
|
|
{
|
|
|
|
margin-bottom: 1vh;
|
2024-05-22 18:45:53 +02:00
|
|
|
}
|