2024-02-29 20:00:59 +01:00
|
|
|
article[class="settings"] {
|
|
|
|
margin: 100px auto;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 900px;
|
|
|
|
transition: all 0.8s linear;
|
|
|
|
}
|
|
|
|
|
|
|
|
article[class="settings"] h1 {
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
article[class="settings"] label {
|
2024-05-22 23:15:21 +02:00
|
|
|
color: var(--primary);
|
2024-02-29 20:00:59 +01:00
|
|
|
margin-bottom: 10px;
|
|
|
|
display: inline-block;
|
2024-05-22 23:15:21 +02:00
|
|
|
font-weight: bold;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-22 03:15:47 +02:00
|
|
|
article.settings div.tab-toolbar button {
|
|
|
|
width: 180px;
|
|
|
|
height: 40px;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
article.settings section.settings-tabs section.section-tab {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 400px;
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
.show {
|
|
|
|
display: block;
|
|
|
|
visibility: visible;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hide {
|
2024-05-22 23:15:21 +02:00
|
|
|
/* REFACTOR: i know, i know, it's just a placeholder*/
|
|
|
|
display: none !important;
|
2024-05-22 03:15:47 +02:00
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
/*
|
|
|
|
MEMBER PROFILE TAB
|
|
|
|
*/
|
|
|
|
|
|
|
|
section#site-profile {
|
2024-02-29 20:00:59 +01:00
|
|
|
display: grid;
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-template-columns: 1fr 1fr 1fr;
|
2024-02-29 20:00:59 +01:00
|
|
|
grid-auto-columns: auto;
|
|
|
|
gap: 15px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 900px;
|
2024-05-25 00:22:11 +02:00
|
|
|
margin: 10px auto;
|
2024-05-22 23:15:21 +02:00
|
|
|
border-radius: 3px;
|
2024-05-25 00:22:11 +02:00
|
|
|
background: var(--secondary);
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(1) {
|
2024-02-29 20:00:59 +01:00
|
|
|
grid-column: 1/2;
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-row: 1/2;
|
|
|
|
height: 250px;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(2) {
|
2024-02-29 20:00:59 +01:00
|
|
|
grid-column: 2/4;
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-row: 1/2;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(3) {
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-column: 1/2;
|
|
|
|
grid-row: 2/3;
|
|
|
|
padding-left: 10px;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(4) {
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-column: 2/3;
|
|
|
|
grid-row: 2/3;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(4) a {
|
2024-02-29 20:00:59 +01:00
|
|
|
font-weight: bold;
|
|
|
|
text-decoration: underline;
|
2024-03-21 21:51:24 +01:00
|
|
|
color: var(--primary-highlight);
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(5) {
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-column: 3/4;
|
|
|
|
grid-row: 2/3;
|
|
|
|
padding-right: 10px;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(6) {
|
2024-05-22 23:15:21 +02:00
|
|
|
grid-column: 1/4;
|
|
|
|
grid-row: 3/4;
|
|
|
|
padding: 0 10px;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(6) div {
|
2024-05-22 23:15:21 +02:00
|
|
|
display: inline-block;
|
|
|
|
color: var(--secondary);
|
|
|
|
word-wrap: break-word;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 49.6%;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div:nth-child(6) div > span {
|
2024-05-22 23:15:21 +02:00
|
|
|
display: block;
|
|
|
|
background: var(--primary);
|
|
|
|
color: var(--secondary);
|
|
|
|
border-radius: 3px;
|
|
|
|
padding: 3px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div textarea {
|
2024-05-22 23:15:21 +02:00
|
|
|
width: 98.4%;
|
|
|
|
height: 85%;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile > div[class="member-avatar"] div,
|
|
|
|
section#site-profile > div[class="site-background"] div {
|
2024-02-29 20:00:59 +01:00
|
|
|
height: 100%;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile div input[type="file"] {
|
2024-02-29 20:00:59 +01:00
|
|
|
display: none;
|
|
|
|
visibility: hidden;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-profile div input[type="text"] {
|
2024-02-29 20:00:59 +01:00
|
|
|
width: 98.4%;
|
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
/*
|
|
|
|
SITE FEATURES TAB
|
|
|
|
*/
|
|
|
|
|
|
|
|
section#site-features > div.features-mail {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-auto-columns: auto;
|
|
|
|
gap: 15px;
|
2024-02-29 20:00:59 +01:00
|
|
|
width: 100%;
|
2024-05-25 00:22:11 +02:00
|
|
|
max-width: 880px;
|
|
|
|
margin: 10px auto 10px auto;
|
|
|
|
border-radius: 3px;
|
|
|
|
background: var(--secondary);
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.features-mail input {
|
|
|
|
width: 98.4%;
|
|
|
|
height: 40px;
|
|
|
|
padding-left: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.features-mail a {
|
|
|
|
margin-right: 3px;
|
|
|
|
color: var(--primary);
|
|
|
|
display: inline-block;
|
|
|
|
height: 40px;
|
|
|
|
padding: 15px 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.features-mail button {
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features div.site-options button,
|
|
|
|
section#site-features div.site-maintenance button {
|
|
|
|
width: 90%;
|
|
|
|
height: 40px;
|
2024-02-29 20:00:59 +01:00
|
|
|
margin-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-features button span {
|
2024-02-29 20:00:59 +01:00
|
|
|
font-size: 0.8em;
|
|
|
|
display: inline;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-features > div.features-mail a[data-enabled="true"] {
|
|
|
|
color: var(--secondary-highlight);
|
|
|
|
font-weight: bold;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.features-mail div[data-enabled="false"] {
|
|
|
|
visibility: hidden;
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div[class="features"] button[data-enabled="true"] {
|
2024-02-29 20:00:59 +01:00
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
2024-05-25 00:22:11 +02:00
|
|
|
section#site-features > div.site-options {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-auto-columns: auto;
|
|
|
|
gap: 15px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 900px;
|
|
|
|
margin: 0 auto 10px auto;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features div.option-container {
|
2024-02-29 20:00:59 +01:00
|
|
|
background: var(--secondary);
|
2024-05-25 00:22:11 +02:00
|
|
|
padding: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features div.option-container span {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features div.option-container svg {
|
|
|
|
fill: var(--primary);
|
|
|
|
position: relative;
|
|
|
|
top: 7px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.site-options button[data-enabled="true"] {
|
|
|
|
color: var(--primary-highlight);
|
|
|
|
background: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.site-options button[data-enabled="false"] {
|
|
|
|
color: var(--secondary);
|
|
|
|
background: var(--secondary-highlight);
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-features > div.site-maintenance {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-auto-columns: auto;
|
|
|
|
gap: 15px;
|
|
|
|
width: 100%;
|
|
|
|
max-width: 900px;
|
|
|
|
margin: 0 auto 10px auto;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: var(--primary);
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
2024-05-26 22:38:46 +02:00
|
|
|
/*
|
|
|
|
SITE FEATURES TAB
|
|
|
|
*/
|
|
|
|
|
|
|
|
section#site-themes > button {
|
|
|
|
background: var(--secondary);
|
2024-04-25 23:03:06 +02:00
|
|
|
display: inline-block;
|
2024-02-29 20:00:59 +01:00
|
|
|
border-radius: 3px;
|
|
|
|
padding: 3px;
|
2024-05-26 22:38:46 +02:00
|
|
|
width: 250px;
|
|
|
|
height: 200px;
|
|
|
|
margin: 10px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button > div {
|
|
|
|
height: 145px;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
top: -10px;
|
|
|
|
position: relative;
|
|
|
|
border-radius: 3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button[data-enabled="true"] > div {
|
|
|
|
background: var(--secondary-highlight);
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button[data-enabled="true"] label {
|
|
|
|
color: var(--primary);
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button[data-enabled="false"] > div {
|
|
|
|
background: var(--primary);
|
|
|
|
color: var(--secondary);
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button[data-enabled="false"] label {
|
|
|
|
color: var(--secondary);
|
2024-04-25 23:03:06 +02:00
|
|
|
}
|
|
|
|
|
2024-05-26 22:38:46 +02:00
|
|
|
section#site-themes > button[data-enabled="true"] > svg {
|
|
|
|
fill: var(--primary);
|
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > button[data-enabled="false"] > svg {
|
|
|
|
fill: var(--primary);
|
|
|
|
position: relative;
|
|
|
|
top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section#site-themes > a {
|
2024-04-25 23:03:06 +02:00
|
|
|
background: var(--secondary-highlight);
|
|
|
|
display: inline-block;
|
|
|
|
width: 15%;
|
|
|
|
border-radius: 3px;
|
|
|
|
text-align: center;
|
|
|
|
vertical-align: top;
|
|
|
|
top: 13px;
|
2024-05-26 22:38:46 +02:00
|
|
|
position: absolute;
|
|
|
|
z-index: 30;
|
2024-02-29 20:00:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
section[class="data-settings"] {
|
|
|
|
color: var(--white);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 900px) {
|
|
|
|
main > article[class="settings"] {
|
|
|
|
width: 97%;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 650px) {
|
|
|
|
section[class="member-settings"] div input[type="text"] {
|
|
|
|
width: 99.3%;
|
|
|
|
height: 40px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div[class="mail"] input {
|
|
|
|
width: 97.7%;
|
|
|
|
height: 40px;
|
|
|
|
padding-left: 5px;
|
|
|
|
margin-bottom: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] div textarea {
|
|
|
|
height: 80px;
|
|
|
|
width: 99.3%;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(1) {
|
|
|
|
grid-column: 1/2;
|
|
|
|
grid-row: 1/3;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(2) {
|
|
|
|
grid-column: 2/3;
|
|
|
|
grid-row: 1/3;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(3) {
|
|
|
|
grid-column: 1/3;
|
|
|
|
grid-row: 3/5;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(4) {
|
|
|
|
grid-column: 1/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(5) {
|
|
|
|
grid-column: 2/3;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(6) {
|
|
|
|
grid-column: 1/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(7) {
|
|
|
|
grid-column: 2/3;
|
|
|
|
min-height: 325px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(8) {
|
|
|
|
grid-column: 1/3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 530px) {
|
|
|
|
section[class="member-settings"] > div[class="mail"] input {
|
|
|
|
width: 98.5%;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] {
|
|
|
|
grid-template-columns: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] div textarea {
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(1) {
|
|
|
|
grid-row: 1/3;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(2) {
|
|
|
|
grid-row: 3/5;
|
|
|
|
grid-column: 1;
|
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(3) {
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 5/7;
|
|
|
|
}
|
|
|
|
|
|
|
|
section[class="member-settings"] > div:nth-child(4),
|
|
|
|
section[class="member-settings"] > div:nth-child(5),
|
|
|
|
section[class="member-settings"] > div:nth-child(6),
|
|
|
|
section[class="member-settings"] > div:nth-child(7),
|
|
|
|
section[class="member-settings"] > div:nth-child(8) {
|
|
|
|
grid-column: 1;
|
|
|
|
}
|
|
|
|
}
|