add web
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.container a {
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.admin-box {
|
||||
transition: 0.2s;
|
||||
background-color: rgb(27, 27, 27);
|
||||
/* drop shadow*/
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
.admin-box p {
|
||||
color: rgb(200,200,200);
|
||||
}
|
||||
|
||||
.admin-box:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.gameserver-box {
|
||||
transition: 0.2s;
|
||||
border: 1px solid rgb(60,60,60) !important;
|
||||
}
|
||||
.greenborder {
|
||||
border-color: rgb(0, 199, 0) !important;
|
||||
}
|
||||
.redborder {
|
||||
border-color: rgb(199, 0, 0) !important;
|
||||
}
|
||||
.yellowborder {
|
||||
border-color: rgb(199, 199, 0) !important;
|
||||
}
|
||||
|
||||
.gameserver-box:hover {
|
||||
transform: scale(1.015);
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.head {
|
||||
width: 60px;
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 60px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.torso {
|
||||
width: 120px;
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 120px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
margin-top: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.leftArm {
|
||||
width: 50px;
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 120px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
z-index: 99;
|
||||
margin-left: -60px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.rightArm {
|
||||
width: 50px;
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 120px;
|
||||
margin: 0 auto;
|
||||
display: block;
|
||||
z-index: 99;
|
||||
margin-left: 130px;
|
||||
border-radius: 5px;
|
||||
margin-top: -120px;
|
||||
}
|
||||
.legs {
|
||||
width: 120px;
|
||||
height: 100%;
|
||||
margin: 10px auto 0 auto;
|
||||
display: block;
|
||||
}
|
||||
.leftLeg {
|
||||
float: left;
|
||||
width: calc(50% - 10px);
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 120px;
|
||||
margin-right: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
.rightLeg {
|
||||
float: right;
|
||||
width: calc(50% - 10px);
|
||||
border: 1px solid rgb(60,60,60);
|
||||
cursor: pointer;
|
||||
height: 120px;
|
||||
margin-left: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgb(27, 27, 27); /* Adjust the opacity and color as needed */
|
||||
z-index: 9999; /* Make sure the overlay is above other elements */
|
||||
border-radius: 5px;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.color-picker-item {
|
||||
border-radius: 50%;
|
||||
border: 1px solid rgb(60,60,60);
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
margin: 2px;
|
||||
cursor: pointer;
|
||||
}
|
||||
Vendored
+6
File diff suppressed because one or more lines are too long
@@ -0,0 +1,11 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.text-secondary {
|
||||
color: rgb(199,199,199) !important;
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
.text-secondary {
|
||||
color: rgb(199, 199, 199) !important;
|
||||
}
|
||||
.nav-link {
|
||||
color: rgb(199, 199, 199) !important;
|
||||
}
|
||||
.nav-link.active {
|
||||
color: rgb(255, 255, 255) !important;
|
||||
}
|
||||
.details-container h2 {
|
||||
font-size: 29px;
|
||||
font-weight: 500;
|
||||
}
|
||||
.details-container p {
|
||||
font-size: 12px;
|
||||
}
|
||||
.redBg {
|
||||
background: #CE645B;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.greenBg {
|
||||
background: #52A846;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.borderLeft {
|
||||
border-left: 1px solid #c3c3c3;
|
||||
}
|
||||
|
||||
.thumbsText {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.usersVote {
|
||||
padding: 0 28px;
|
||||
height: 30px;
|
||||
position: relative;
|
||||
max-width: 300px;
|
||||
width: 70%;
|
||||
display: block;
|
||||
float: right;
|
||||
margin-top: .5rem;
|
||||
margin-right: auto;
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.upvote {
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: -3px;
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.downvote {
|
||||
right: 0;
|
||||
position: absolute;
|
||||
top: -3px;
|
||||
}
|
||||
|
||||
.votedetails {
|
||||
display: block;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.votecontainer {
|
||||
width: 100%;
|
||||
height: 6px;
|
||||
margin: 6px 0 0 0;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.votenumbers {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.votebackground {
|
||||
background-color: #E27676;
|
||||
width: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.votepercentage {
|
||||
background-color: #02b757;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.segment {
|
||||
background-color: rgba(20, 20, 20, 0.3);
|
||||
height: 6px;
|
||||
width: 2px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.countleft {
|
||||
float: left;
|
||||
color: rgb(200, 200, 200);
|
||||
}
|
||||
|
||||
.countright {
|
||||
float: right;
|
||||
color: rgb(200, 200, 200);
|
||||
text-align: right;
|
||||
}
|
||||
.cursor-pointer {
|
||||
cursor: pointer;
|
||||
}
|
||||
.vote-up-text {
|
||||
color: #02b757;
|
||||
}
|
||||
.vote-down-text {
|
||||
color: #E27676;
|
||||
}
|
||||
.text-favorite {
|
||||
color: #F6B702;
|
||||
font-size: 16px;
|
||||
font-weight: 400;
|
||||
}
|
||||
.favorite-button-container {
|
||||
float: left;
|
||||
margin-left: 10px;
|
||||
width: 15%;
|
||||
cursor: pointer;
|
||||
}
|
||||
@@ -0,0 +1,558 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
|
||||
|
||||
* {
|
||||
font-family: "Outfit", sans-serif;
|
||||
font-optical-sizing: auto;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
body {
|
||||
--bs-body-bg: rgb(20, 20, 20) !important;
|
||||
--bs-heading-color: #fff !important;
|
||||
}
|
||||
|
||||
.linebreak {
|
||||
width: 100%;
|
||||
border-bottom: 1px solid rgb(60, 60, 60);
|
||||
margin: 10px 0;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.place-card {
|
||||
background-color: rgb(30, 30, 30);
|
||||
min-height: 220px;
|
||||
transition: 0.2s;
|
||||
width: 150px;
|
||||
border-radius: 3px;
|
||||
box-shadow: 0 0 5px rgb(0, 0, 0);
|
||||
}
|
||||
|
||||
.place-card h5 {
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.place-card:hover {
|
||||
transform: 0.2s;
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.place-card .votePercentageBackground {
|
||||
background-color: rgb(49, 49, 49);
|
||||
z-index: 1;
|
||||
height: 10px;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
border: 1px solid rgb(27, 27, 27);
|
||||
margin-top: 3px;
|
||||
}
|
||||
|
||||
.place-card .votePercentageFill {
|
||||
background-color: rgb(85, 85, 85);
|
||||
height: 10px;
|
||||
}
|
||||
|
||||
.place-card .segment {
|
||||
background-color: rgb(27, 27, 27);
|
||||
height: 10px;
|
||||
width: 2px;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
#websitewidemessage {
|
||||
background-color: #f5a9b8;
|
||||
}
|
||||
|
||||
#websitewidemessage p {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: 500;
|
||||
font-size: 1rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#websitewidemessage a {
|
||||
text-decoration: underline !important;
|
||||
color: rgb(0, 140, 255) !important;
|
||||
font-weight: 400 !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
background-color: rgb(30, 30, 30);
|
||||
border-bottom: 1px solid rgb(90, 90, 90);
|
||||
}
|
||||
|
||||
.navbar-brand h1 {
|
||||
font-size: 2rem;
|
||||
margin-bottom: 0;
|
||||
font-weight: 700;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
#footer {
|
||||
border-top: 1px solid rgb(90, 90, 90);
|
||||
background-color: rgb(30, 30, 30);
|
||||
min-height: 100px;
|
||||
}
|
||||
|
||||
#footerlist a {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
text-decoration: none !important;
|
||||
color: rgb(160, 160, 160) !important;
|
||||
font-weight: 400 !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
#currencydiv span {
|
||||
margin-left: 4px;
|
||||
font-size: 1.25rem;
|
||||
font-weight: 400;
|
||||
color: rgb(255, 255, 255);
|
||||
min-width: 28px;
|
||||
}
|
||||
|
||||
.text-secondary {
|
||||
color: rgb(170, 170, 170) !important;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.sidebar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: -250px;
|
||||
width: 250px;
|
||||
height: 100vh;
|
||||
background-color: #131d23;
|
||||
overflow-y: auto;
|
||||
z-index: 1050;
|
||||
transition: left 0.3s ease;
|
||||
padding-top: 60px;
|
||||
}
|
||||
|
||||
.sidebar.show {
|
||||
left: 0 !important;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
z-index: 1100;
|
||||
background-color: #131d23;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
body.sidebar-hidden .sidebar {
|
||||
left: -250px !important;
|
||||
}
|
||||
|
||||
.fixed-top-corner {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 56px;
|
||||
/* match navbar height */
|
||||
z-index: 1150;
|
||||
background-color: #1a1a1a;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
padding: 0 1rem;
|
||||
border-bottom-left-radius: 0.5rem;
|
||||
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
#footer .row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
#footer .col {
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
#footer .row {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
#footer .col {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.toggle-sidebar {
|
||||
z-index: 2000;
|
||||
}
|
||||
|
||||
.rbx-icon-default-navigation,
|
||||
.rbx-icon-nav-menu,
|
||||
.rbx-icon-nav-robux,
|
||||
.rbx-icon-nav-tix,
|
||||
.rbx-icon-nav-settings,
|
||||
.rbx-icon-nav-search,
|
||||
.rbx-icon-nav-home,
|
||||
.rbx-icon-nav-profile,
|
||||
.rbx-icon-nav-message,
|
||||
.rbx-icon-nav-friends,
|
||||
.rbx-icon-nav-charactercustomizer,
|
||||
.rbx-icon-nav-inventory,
|
||||
.rbx-icon-nav-trade,
|
||||
.rbx-icon-nav-group,
|
||||
.rbx-icon-nav-forum,
|
||||
.rbx-icon-nav-blog,
|
||||
.rbx-icon-nav-search-white,
|
||||
.rbx-icon-nav-shop {
|
||||
background-image: url(/static/svg/navigation.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto auto;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-menu {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-menu:hover {
|
||||
background-position: -28px 0;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-menu,
|
||||
a:hover .rbx-icon-nav-menu {
|
||||
background-position: -28px 0;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-robux {
|
||||
background-position: 0 -28px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-robux:hover {
|
||||
background-position: -28px -28px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-robux,
|
||||
a:hover .rbx-icon-nav-robux {
|
||||
background-position: -28px -28px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-tix {
|
||||
background-position: 0 -56px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-tix:hover {
|
||||
background-position: -28px -56px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-tix,
|
||||
a:hover .rbx-icon-nav-tix {
|
||||
background-position: -28px -56px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-settings {
|
||||
background-position: 0 -84px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-settings:hover {
|
||||
background-position: -28px -84px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-settings,
|
||||
a:hover .rbx-icon-nav-settings {
|
||||
background-position: -28px -84px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-search {
|
||||
background-position: 0 -112px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-search:hover {
|
||||
background-position: -28px -112px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-search,
|
||||
a:hover .rbx-icon-nav-search {
|
||||
background-position: -28px -112px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-home {
|
||||
background-position: 0 -140px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-home:hover {
|
||||
background-position: -28px -140px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-home,
|
||||
a:hover .rbx-icon-nav-home {
|
||||
background-position: -28px -140px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-profile {
|
||||
background-position: 0 -168px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-profile:hover {
|
||||
background-position: -28px -168px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-profile,
|
||||
a:hover .rbx-icon-nav-profile {
|
||||
background-position: -28px -168px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-message {
|
||||
background-position: 0 -196px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-message:hover {
|
||||
background-position: -28px -196px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-message,
|
||||
a:hover .rbx-icon-nav-message {
|
||||
background-position: -28px -196px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-friends {
|
||||
background-position: 0 -224px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-friends:hover {
|
||||
background-position: -28px -224px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-friends,
|
||||
a:hover .rbx-icon-nav-friends {
|
||||
background-position: -28px -224px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-charactercustomizer {
|
||||
background-position: 0 -252px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-charactercustomizer:hover {
|
||||
background-position: -28px -252px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-charactercustomizer,
|
||||
a:hover .rbx-icon-nav-charactercustomizer {
|
||||
background-position: -28px -252px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-inventory {
|
||||
background-position: 0 -280px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-inventory:hover {
|
||||
background-position: -28px -280px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-inventory,
|
||||
a:hover .rbx-icon-nav-inventory {
|
||||
background-position: -28px -280px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-trade {
|
||||
background-position: 0 -308px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-trade:hover {
|
||||
background-position: -28px -308px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-trade,
|
||||
a:hover .rbx-icon-nav-trade {
|
||||
background-position: -28px -308px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-group {
|
||||
background-position: 0 -336px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-group:hover {
|
||||
background-position: -28px -336px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-group,
|
||||
a:hover .rbx-icon-nav-group {
|
||||
background-position: -28px -336px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-forum {
|
||||
background-position: 0 -364px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-forum:hover {
|
||||
background-position: -28px -364px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-forum,
|
||||
a:hover .rbx-icon-nav-forum {
|
||||
background-position: -28px -364px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-blog {
|
||||
background-position: 0 -392px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-blog:hover {
|
||||
background-position: -28px -392px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-blog,
|
||||
a:hover .rbx-icon-nav-blog {
|
||||
background-position: -28px -392px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-search-white {
|
||||
background-position: 0 -420px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-search-white:hover {
|
||||
background-position: -28px -420px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-search-white,
|
||||
a:hover .rbx-icon-nav-search-white {
|
||||
background-position: -28px -420px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-shop {
|
||||
background-position: 0 -448px;
|
||||
}
|
||||
|
||||
.rbx-icon-nav-shop:hover {
|
||||
background-position: -28px -448px;
|
||||
}
|
||||
|
||||
button:hover .rbx-icon-nav-shop,
|
||||
a:hover .rbx-icon-nav-shop {
|
||||
background-position: -28px -448px;
|
||||
}
|
||||
|
||||
.rbx-icon-default-bc,
|
||||
.rbx-icon-bc,
|
||||
.rbx-icon-tbc,
|
||||
.rbx-icon-obc,
|
||||
.rbx-icon-negative-bc,
|
||||
.rbx-icon-negative-tbc,
|
||||
.rbx-icon-negative-obc {
|
||||
background-image: url(/static/img/Style/bc.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto auto;
|
||||
width: 52px;
|
||||
height: 28px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.rbx-icon-default-iconlabels,
|
||||
.rbx-icon-bc-label,
|
||||
.rbx-icon-tbc-label,
|
||||
.rbx-icon-obc-label,
|
||||
.rbx-icon-limited-label,
|
||||
.rbx-icon-limited-bc-label,
|
||||
.rbx-icon-limited-tbc-label,
|
||||
.rbx-icon-limited-obc-label,
|
||||
.rbx-icon-limited-unique-label,
|
||||
.rbx-icon-limited-unique-bc-label,
|
||||
.rbx-icon-limited-unique-tbc-label,
|
||||
.rbx-icon-limited-unique-obc-label {
|
||||
background-image: url(/static/img/Style/icon_labels.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: auto auto;
|
||||
width: 110px;
|
||||
height: 18px;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
.rbx-icon-bc {
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.rbx-icon-tbc {
|
||||
background-position: 0 -28px;
|
||||
}
|
||||
|
||||
.rbx-icon-obc {
|
||||
background-position: 0 -56px;
|
||||
}
|
||||
|
||||
.rbx-icon-negative-bc {
|
||||
background-position: -52px 0;
|
||||
}
|
||||
|
||||
.rbx-icon-negative-tbc {
|
||||
background-position: -52px -28px;
|
||||
}
|
||||
|
||||
.rbx-icon-negative-obc {
|
||||
background-position: -52px -56px;
|
||||
}
|
||||
|
||||
.rbx-icon-bc-label {
|
||||
width: 30px;
|
||||
background-position: 0 0;
|
||||
}
|
||||
|
||||
.rbx-icon-tbc-label {
|
||||
width: 40px;
|
||||
background-position: 0 -18px;
|
||||
}
|
||||
|
||||
.rbx-icon-obc-label {
|
||||
width: 40px;
|
||||
background-position: 0 -36px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-label {
|
||||
width: 60px;
|
||||
background-position: 0 -54px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-bc-label {
|
||||
width: 90px;
|
||||
background-position: 0 -72px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-tbc-label {
|
||||
width: 90px;
|
||||
background-position: 0 -90px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-obc-label {
|
||||
width: 90px;
|
||||
background-position: 0 -108px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-unique-label {
|
||||
width: 80px;
|
||||
background-position: 0 -126px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-unique-bc-label {
|
||||
width: 100px;
|
||||
background-position: 0 -144px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-unique-tbc-label {
|
||||
width: 110px;
|
||||
background-position: 0 -162px;
|
||||
}
|
||||
|
||||
.rbx-icon-limited-unique-obc-label {
|
||||
background-position: 0 -180px;
|
||||
}
|
||||
@@ -0,0 +1,360 @@
|
||||
:root {
|
||||
--sidebar-width: 250px;
|
||||
--navbar-height: 60px;
|
||||
--primary-color: #333333;
|
||||
--sidebar-bg: #1a1a1a;
|
||||
--transition-speed: 0.3s;
|
||||
--transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
|
||||
--alert-color: #f5a9b8;
|
||||
--scrollbar-color: #333333;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
height: 12px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background: transparent;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: #666;
|
||||
border-radius: 8px;
|
||||
background-clip: padding-box;
|
||||
border: 3px solid transparent;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #888;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-button {
|
||||
width: 0;
|
||||
height: 0;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* ariez what the fuck? */
|
||||
* {
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: #666 transparent;
|
||||
}
|
||||
.modal-content {
|
||||
z-index: 1060 !important;
|
||||
position: relative;
|
||||
}
|
||||
@keyframes slideIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
transform: translateX(-20px);
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
transform: translateX(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleIn {
|
||||
from {
|
||||
transform: scale(0.95);
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
transform: scale(1);
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
body {
|
||||
min-height: 100vh;
|
||||
padding-top: var(--navbar-height) !important;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
position: fixed;
|
||||
left: 0;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: var(--sidebar-width);
|
||||
background: var(--sidebar-bg);
|
||||
border-right: 1px solid rgba(255,255,255,0.1);
|
||||
z-index: 1030;
|
||||
transition: transform var(--transition-speed) var(--transition-timing);
|
||||
padding-top: var(--navbar-height);
|
||||
overflow-y: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--primary-color) var(--sidebar-bg);
|
||||
}
|
||||
|
||||
.sidebar-nav a {
|
||||
animation: slideIn 0.5s var(--transition-timing);
|
||||
animation-fill-mode: both;
|
||||
}
|
||||
|
||||
.sidebar-nav a:nth-child(1) { animation-delay: 0.1s; }
|
||||
.sidebar-nav a:nth-child(2) { animation-delay: 0.15s; }
|
||||
.sidebar-nav a:nth-child(3) { animation-delay: 0.2s; }
|
||||
.sidebar-nav a:nth-child(4) { animation-delay: 0.25s; }
|
||||
.sidebar-nav a:nth-child(5) { animation-delay: 0.3s; }
|
||||
.sidebar-nav a:nth-child(6) { animation-delay: 0.35s; }
|
||||
.sidebar-nav a:nth-child(7) { animation-delay: 0.4s; }
|
||||
.sidebar-nav a:nth-child(8) { animation-delay: 0.45s; }
|
||||
.sidebar-nav a:nth-child(9) { animation-delay: 0.5s; }
|
||||
.sidebar-nav a:nth-child(10) { animation-delay: 0.55s; }
|
||||
|
||||
.sidebar-hidden .sidebar {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.main-content {
|
||||
margin-left: var(--sidebar-width);
|
||||
transition: margin var(--transition-speed) var(--transition-timing);
|
||||
animation: fadeIn 0.5s var(--transition-timing);
|
||||
padding: 1rem;
|
||||
min-height: calc(100vh - var(--navbar-height));
|
||||
}
|
||||
|
||||
.sidebar-hidden .main-content {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.sidebar-nav {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link {
|
||||
color: rgba(255,255,255,0.8);
|
||||
padding: 0.75rem 1rem;
|
||||
border-radius: 8px;
|
||||
margin-bottom: 0.5rem;
|
||||
transition: all var(--transition-speed) var(--transition-timing);
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.75rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link:hover {
|
||||
background: rgba(255,255,255,0.1);
|
||||
color: white;
|
||||
transform: translateX(5px);
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link::before {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 3px;
|
||||
background: var(--primary-color);
|
||||
transform: scaleY(0);
|
||||
transition: transform var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link:hover::before {
|
||||
transform: scaleY(1);
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link i {
|
||||
font-size: 1.25rem;
|
||||
transition: transform var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
.sidebar-nav .nav-link:hover i {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.navbar {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: var(--navbar-height);
|
||||
background: var(--sidebar-bg) !important;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
animation: fadeIn 0.5s var(--transition-timing);
|
||||
z-index: 1040;
|
||||
padding: 0.5rem 1rem;
|
||||
}
|
||||
|
||||
.navbar .container-fluid {
|
||||
justify-content: space-between;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.navbar-brand {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.navbar-brand:hover {
|
||||
transform: scale(1.05);
|
||||
}
|
||||
|
||||
.profile-section {
|
||||
padding: 1rem;
|
||||
border-top: 1px solid rgba(255,255,255,0.1);
|
||||
margin-top: auto;
|
||||
animation: scaleIn 0.5s var(--transition-timing);
|
||||
}
|
||||
|
||||
.profile-section img {
|
||||
transition: transform var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
.profile-section:hover img {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.toggle-sidebar {
|
||||
cursor: pointer;
|
||||
padding: 0.5rem;
|
||||
display: none;
|
||||
transition: transform var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
.toggle-sidebar:hover {
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.badge {
|
||||
transition: all var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
.nav-link:hover .badge {
|
||||
transform: scale(1.1) translateX(2px);
|
||||
}
|
||||
|
||||
#footer {
|
||||
margin-left: var(--sidebar-width);
|
||||
transition: margin var(--transition-speed) var(--transition-timing);
|
||||
animation: fadeIn 0.5s var(--transition-timing);
|
||||
}
|
||||
|
||||
.sidebar-hidden #footer {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.title-logo {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
height: 2.5rem;
|
||||
}
|
||||
|
||||
.title-logo img {
|
||||
height: 100%;
|
||||
width: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.title-logo-lander {
|
||||
margin: 0;
|
||||
display: inline-block;
|
||||
height: 2.9rem;
|
||||
}
|
||||
|
||||
.title-logo-lander img {
|
||||
height: 100%;
|
||||
width: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
#websitewidemessage {
|
||||
position: fixed;
|
||||
top: var(--navbar-height);
|
||||
left: var(--sidebar-width);
|
||||
right: 0;
|
||||
z-index: 1030;
|
||||
margin: 0;
|
||||
border-radius: 0;
|
||||
text-align: center;
|
||||
background-color: var(--alert-color);
|
||||
animation: slideIn 0.5s var(--transition-timing);
|
||||
padding: 0.25rem;
|
||||
font-size: 0.875rem;
|
||||
min-height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border-bottom: 1px solid rgba(255,255,255,0.1);
|
||||
}
|
||||
|
||||
.sidebar-hidden #websitewidemessage {
|
||||
left: 0;
|
||||
transition: left var(--transition-speed) var(--transition-timing);
|
||||
}
|
||||
|
||||
#websitewidemessage p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
body.has-alert .main-content {
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
@media (max-width: 992px) {
|
||||
.sidebar {
|
||||
transform: translateX(-100%);
|
||||
}
|
||||
|
||||
.sidebar.show {
|
||||
transform: translateX(0);
|
||||
}
|
||||
|
||||
.main-content {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
.toggle-sidebar {
|
||||
display: block;
|
||||
}
|
||||
|
||||
#websitewidemessage {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
body.has-alert .main-content {
|
||||
padding-top: 0px;
|
||||
}
|
||||
}
|
||||
|
||||
.subnav-bar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar {
|
||||
width: 6px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-track {
|
||||
background: var(--scrollbar-color);
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-thumb {
|
||||
background-color: #4a4a4a;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
.sidebar::-webkit-scrollbar-thumb:hover {
|
||||
background-color: #555555;
|
||||
}
|
||||
|
||||
.nav-item.settings-dropdown {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
#currencydiv {
|
||||
display: none;
|
||||
}
|
||||
@@ -0,0 +1,37 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.card-container {
|
||||
background-color: rgb(30,30,30) !important;
|
||||
box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
position: absolute;
|
||||
bottom : -8px;
|
||||
right: -8px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
background-color: rgb(0, 139, 219);
|
||||
border: 2px solid rgb(30,30,30);
|
||||
}
|
||||
|
||||
.status-icon-green {
|
||||
background-color: rgb(15, 211, 80) !important;
|
||||
}
|
||||
|
||||
.image-container {
|
||||
position: relative;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
|
||||
}
|
||||
|
||||
.text-secondary {
|
||||
color: rgb(180, 180, 180) !important;
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,77 @@
|
||||
body {
|
||||
background: radial-gradient(circle, #333 10%, transparent 11%),radial-gradient(circle at bottom left, #333 5%, transparent 6%),radial-gradient(circle at bottom right, #333 5%, transparent 6%),radial-gradient(circle at top left, #333 5%, transparent 6%),radial-gradient(circle at top right, #333 5%, transparent 6%);
|
||||
background-size: 3em 3em;
|
||||
background-color: rgb(20,20,20);
|
||||
}
|
||||
#main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.login-container {
|
||||
min-width: 330px;
|
||||
display: inline-block;
|
||||
background-color: rgba(25,25,25, 1);
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
.login-container h1 {
|
||||
text-align: center;
|
||||
margin-bottom: 0;
|
||||
font-size: 3.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
.login-container p {
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.login-container button {
|
||||
width: 100%;
|
||||
font-weight: 600;
|
||||
font-size: larger;
|
||||
padding: 3px;
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.login-container a {
|
||||
font-size: small;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
||||
.col {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
#password {
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.form-text {
|
||||
/* wrap the text*/
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
#main a {
|
||||
text-decoration: none !important;
|
||||
color: rgb(32, 147, 255) !important;
|
||||
font-weight: 500 !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
#main a:hover {
|
||||
text-decoration: none !important;
|
||||
color: rgb(3, 133, 255) !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
@@ -0,0 +1,52 @@
|
||||
#main {
|
||||
display: flex;
|
||||
min-height: 100vh;
|
||||
margin-top: 120px;
|
||||
}
|
||||
|
||||
.status-icon {
|
||||
position: absolute;
|
||||
bottom : -8px;
|
||||
right: -8px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
border-radius: 50%;
|
||||
background-color: rgb(0, 139, 219);
|
||||
border: 2px solid rgb(30,30,30);
|
||||
}
|
||||
|
||||
.status-icon-green {
|
||||
background-color: rgb(15, 211, 80) !important;
|
||||
}
|
||||
|
||||
.image-container {
|
||||
position: relative;
|
||||
display: table;
|
||||
margin-right: 20px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.dark-container {
|
||||
background-color: rgb(30,30,30) !important;
|
||||
box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
|
||||
border-radius: 5px;
|
||||
min-height: 100px;
|
||||
overflow-x: scroll;
|
||||
-ms-overflow-style: none;
|
||||
scrollbar-width: none;
|
||||
}
|
||||
|
||||
.dark-container::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.image-container-friend {
|
||||
position: relative;
|
||||
display: table;
|
||||
margin: 0 auto;
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
#main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.settings-container {
|
||||
min-width: 800px;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
body {
|
||||
background: radial-gradient(circle, #333 10%, transparent 11%),radial-gradient(circle at bottom left, #333 5%, transparent 6%),radial-gradient(circle at bottom right, #333 5%, transparent 6%),radial-gradient(circle at top left, #333 5%, transparent 6%),radial-gradient(circle at top right, #333 5%, transparent 6%);
|
||||
background-size: 3em 3em;
|
||||
background-color: rgb(20,20,20);
|
||||
}
|
||||
|
||||
#main {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.signup-container {
|
||||
min-width: 330px;
|
||||
display: inline-block;
|
||||
background-color: rgba(25,25,25, 1);
|
||||
box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
/* only align h1 tags */
|
||||
.signup-container h1 {
|
||||
text-align: center;
|
||||
margin-bottom: 0;
|
||||
font-size: 3.5rem;
|
||||
font-weight: 700;
|
||||
}
|
||||
.signup-container p {
|
||||
text-align: center;
|
||||
padding: 0;
|
||||
margin-bottom: 15px;
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.signup-container button {
|
||||
width: 100%;
|
||||
font-weight: 600;
|
||||
font-size: larger;
|
||||
padding: 3px;
|
||||
margin-bottom: 0 !important;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.signup-container a {
|
||||
font-size: small;
|
||||
font-weight: 400 !important;
|
||||
}
|
||||
|
||||
.col {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
#password {
|
||||
min-width: 300px;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.messagealerts {
|
||||
background: rgba(255, 0, 0, 0.2);
|
||||
color: rgb(226, 226, 226);
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
.form-text {
|
||||
/* wrap the text*/
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none !important;
|
||||
color: rgb(32, 147, 255) !important;
|
||||
font-weight: 500 !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
text-decoration: none !important;
|
||||
color: rgb(3, 133, 255) !important;
|
||||
transition: 0.2s;
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
h1 {
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
h5 {
|
||||
color : rgb(230,230,230);
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
|
||||
p {
|
||||
margin-left: 10px;
|
||||
color: rgb(230, 230, 230);
|
||||
font-size: large;
|
||||
}
|
||||
Reference in New Issue
Block a user