/*GENERAL STYLE*/
body {
font-family: "Stylish", sans-serif;
font-size: 105%;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
background-color: #111111;
background: url("/assets/main-body-bkg.png")
}
.wrapper {
max-width: 1030px;
margin-left: auto;
margin-right: auto;
width: 50%;
}
.container {
color: black;
content: auto;
display: flex;
flex-direction: column;
justify-content: center;
text-align: center;
border: 1px solid black;
border-top: none;
border-bottom: none;
box-shadow: 6px 6px 16px 4px rgba(0, 0, 0, 0.2);
overflow: hidden;
background: url("/assets/main-content-bkg.webp")
}
.SNcontainer {
color: cyan;
padding: 10px;
content: auto;
text-align: center;
overflow: hidden;
border: 1px solid black;
border-top: none;
border-bottom: none;
box-shadow: 6px 6px 16px 4px rgba(0, 0, 0, 0.2);
background: url("/assets/sn-bkg.png")
}
.populus_img {
min-height: 150px;
object-fit: cover;
width: 100%;
height: auto;
display: block
}
iframe {
height: 190px;
padding: 0 40px;
box-sizing: border-box;
border: 0;
display: block;
}
.post {
overflow: hidden
}
.post p {
text-align: left;
margin: 10px
}
.post:not(:first-child) {
border-top:1px solid grey
}
.post img {
border: 1px solid black;
max-width: 50%;
margin: 2%
}
.post:nth-child(even) img {
float: left
}
.post:nth-child(odd) img {
float:right
}
.p_name {
float: left;
font-weight: bold;
}
.p_date {
float: right;
color: grey
}
.screen {
clear: both;
margin: 5px;
border: solid black 1px
}
form {
width: 50%;
margin-left: 25%
}
input[type="text"],
input[type="password"],
textarea {
font-family: "Stylish", sans-serif;
padding: 12px 20px;
margin: 8px 0;
width: 100%;
display: block;
border: 1px solid black;
box-sizing: border-box;
border-radius: 5px;
background-color: #111111;
color: white
}
textarea {
resize: vertical
}
input[type="submit"],
button {
background-color: #ee5b12;
color: white;
font-weight: bold;
padding: 14px 20px;
width: 100%;
margin: 8px 0;
display: block;
border: none;
cursor: pointer;
border-radius: 5px;
box-shadow: 3px 3px 3px 1px rgba(0, 0, 0, 0.2);
}
input[type="submit"]:hover,
button:hover {
background-color: #bd3f00;
opacity: 0.8
}
a {
color: #0e6251;
text-decoration: none
}
p {
padding: 0 20px;
}
.profile {
display: grid;
grid-gap: 40px 25px;
grid-template-columns: 1fr 1fr;
padding: 10px 0 20px;
margin-left: auto;
margin-right: auto;
width: 75%
}
span {
color: gray;
min-width: fit-content
}
/*STATS*/
table{border-collapse:collapse;margin-left:auto;margin-right:auto}
th, td{border:1px solid black;border-collapse:collapse;padding:10px}
/*MENU STYLE*/
.logo {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
top: 5%;
z-index: 10
}
.banner {
display: block;
position: relative;
overflow: hidden;
background-color: black;
border: 1px solid black;
border-bottom: none;
box-shadow: 6px 6px 16px 4px rgba(0, 0, 0, 0.2)
}
.banner .text {
color: orange;
background-color: rgba(0, 0, 0, 0.5);
text-align: center;
position: absolute;
left: 0;
right: 0;
bottom: 0
}
.slide-container {
position: relative;
width: 100%;
max-width: 1030px;
height: 220px;
margin: auto
}
.slide {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
opacity: 0;
animation: bannerFade 15s infinite
}
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: -5s; }
.slide:nth-child(3) { animation-delay: -10s; }

@keyframes bannerFade {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  33%  { opacity: 1; }
  43%  { opacity: 0; }
  100% { opacity: 0; }
}
.mobile-menu {
display: none
}
.menu, .mobile-menu {
list-style-type: none;
padding: 0;
overflow: hidden;
background-color: black;
background: url("/assets/main-menu-bkg.webp");
background-repeat: repeat-x;
border: 1px solid black;
box-shadow: 6px 6px 16px 4px rgba(0, 0, 0, 0.2)
}
.menu .left,
.mobile-menu .left {
float: left
}
.menu .right,
.mobile-menu .right {
float: right
}
.menu li a,
.mobile-menu li a,
.dropbtn {
display: inline-block;
color: orange;
text-align: center;
padding: 14px 16px;
text-decoration: none;
transition:background-color .3s
}
.menu li a:hover,
.mobile-menu li a:hover,
.dropdown:hover .dropbtn {
background-color: rgba(0, 0, 0, 0.5)
}
.menu li.dropdown-left,
.mobile-menu li.dropdown-left {
float: left
}
.menu li.dropdown-right,
.mobile-menu li.dropdown-right {
float: right
}
.menu .dropdown-content,
.mobile-menu .dropdown-content {
display: none;
position: absolute;
background-color: #222222;
min-width: 160px;
border: 1px solid black;
box-shadow: 8px 8px 16px 4px rgba(0, 0, 0, 0.2);
z-index: 1
}
.menu .dropdown-content a,
.mobile-menu .dropdown-content a {
color: orange;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left
}
.menu .dropdown-content a:hover,
.mobile-menu .dropdown-content a:hover {
background-color: rgba(0, 0, 0, 0.5)
}
.menu .dropdown-right:hover .dropdown-content,
.mobile-menu .dropdown-right:hover .dropdown-content,
.menu .dropdown-left:hover .dropdown-content,
.mobile-menu .dropdown-left:hover .dropdown-content {
display: block
}
.menu img {
display: block;
margin: auto;
width: 15%;
image-rendering: pixelated
}
ul {
padding: 0;
margin: 0;
}
/*FOOTER STYLE*/
footer {
padding: 0;
overflow: hidden;
color: lightgrey;
background-color: black;
background: url("/assets/main-menu-bkg.webp");
background-repeat: repeat-x;
background-position: bottom;
border: 1px solid black;
box-shadow: 6px 6px 16px 4px rgba(0, 0, 0, 0.2)
}
footer .note {
display: flex;
justify-content: space-between;
padding: 5px;
margin-left: 10px;
margin-right: 10px
}
.whiteLink {
color: lightgrey;
text-decoration: none
}
.social {
padding-right: 5px
}
.social img {
height: 32px;
width: 32px
}
/*RESPONSIVE*/
@media screen and (max-width: 1030px) {
.important, .banner, .container, .SNcontainer, footer, .social {
margin-right: 0;
margin-left: 0
}
.wrapper {
width: 100%;
}
form {
margin-right: 0;
margin-left: 0;
width: 100%
}
.mobile-menu {
display: none;
margin-right: 0;
margin-left: 0
}
.menu {
display: block;
margin-right: 0;
margin-left: 0
}
.menu a {
display: block;
text-align: center;
margin-right: 0;
margin-left: 0
}
}
@media screen and (max-width: 512px) {
.menu {
display: none
}
.mobile-menu {
display: block;
text-align: center
}
.mobile-menu li.dropdown-left, .mobile-menu .left {
display: inline-block;
float: none
}
iframe {
padding: 0px;
}
}
@media screen and (max-width: 237px) {
.mobile-menu, footer {
display: none
}
}