76 lines
1.3 KiB
Plaintext
76 lines
1.3 KiB
Plaintext
// vars
|
|
@green005: 'https://files.catbox.moe/ehboj8.jpg';
|
|
@transblack: rgba(0, 0, 0, 0.55);
|
|
@transblack2: rgba(0, 0, 0, 0.65);
|
|
@lime: #c8d100;
|
|
@green: #03A406;
|
|
@mgreen: #009202;
|
|
@dgreen: #006100;
|
|
|
|
// content
|
|
body {
|
|
background-image: url(@green005);
|
|
}
|
|
|
|
nav .top {
|
|
background-color: @dgreen !important;
|
|
}
|
|
|
|
nav .links {
|
|
background-color: @mgreen !important;
|
|
}
|
|
|
|
main {
|
|
background-color: @transblack !important;
|
|
@main-border: 3px solid black;
|
|
backdrop-filter: blur(5px);
|
|
border-left: @main-border; border-right: @main-border; border-bottom: @main-border;
|
|
border-radius: 0px 0px 5px 5px;
|
|
color: white;
|
|
}
|
|
|
|
a {
|
|
color: @lime;
|
|
}
|
|
|
|
.contact, .url-info, .table-section, .profile-info {
|
|
background-color: @transblack2;
|
|
border-color: black !important;
|
|
}
|
|
|
|
.heading {
|
|
background-color: black !important;
|
|
}
|
|
|
|
td {
|
|
background: none !important;
|
|
p {
|
|
color: white !important;
|
|
}
|
|
}
|
|
|
|
.profile {
|
|
.blurbs, .friends {
|
|
.section h4 {
|
|
color: @green !important;
|
|
}
|
|
.heading {
|
|
color: white !important;
|
|
}
|
|
.person p {
|
|
color: @lime !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
span.count {
|
|
color: @green !important;
|
|
}
|
|
|
|
footer {
|
|
background-color: @transblack !important;
|
|
color: white !important;
|
|
border: 3px solid black;
|
|
border-radius: 5px;
|
|
backdrop-filter: blur(5px);
|
|
} |