0% found this document useful (0 votes)
8 views13 pages

Message

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views13 pages

Message

Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 13

body {

font-family: "Roboto", sans-serif;


background:
url("https://i.pinimg.com/originals/de/45/6c/de456ca0dff9045dc5aefe3c637ce2de.jpg")
no-repeat fixed;
background-size: cover;
width: 100%;
}

.header {
height: 50px;
background: pink !important;
width: 100%;
border-radius: 10px;
box-shadow: 10px 10px 10px purple;
}
.content {
background: transparent !important;
width: 100%;
margin-top: 30px;
border-radius: 20px;
padding: 25px;
box-sizing: border-box;
height: auto;
display: inline-block;
color: white !important;
}
.content li {
background: pink !important;
color:white
}
.content li.active {
color:white;
}
.market-item {
width: 185px;
height: 185px;
border: solid 3px white; /* Adds a black border */
border-radius: 10px;
box-shadow: 0px 0px 10px #c7c7c7;

position: relative;
float: left;
overflow: hidden;
background-image:
url('https://i.pinimg.com/564x/ee/12/25/ee1225261be9b9f37ec4b82e14417780.jpg'); /*
Replace with your image path */
background-size: cover; /* Ensures the image covers the entire element */
background-position: center; /* Centers the image */
margin-right: 30px;
margin-bottom: 30px;
transform: scale(1, 1);
transition: all 0.99s ease;
cursor: pointer;
}

.market-item:hover {
transform: scale(1.1, 1.1);
}

.market-item:nth-child(4n + 4) {
margin-right: 0px;
}

.market-item img {
width: 185px;
position: absolute; /* overflow: hidden; */
left: 50%;
transform: translate(-50%, 0%);
top: 0px;
}

.market-item .title {
position: absolute;
bottom: 0px;
left: 0px;
background: rgba(0, 0, 0, 0.3);
width: 100%;
padding: 10px 15px;
box-sizing: border-box;
color: #fff;
text-shadow: 0px 0px 0px #000;
/* box-shadow: 0px -1px 10px #616161; */
}

.market-item .title small {


float: right;
margin-top: 3px;
text-shadow: none;
font-size: 11px;
}

.market-item .type {
position: absolute;
background: #ffb300;
color: #fff;
padding: 5px;
border-bottom-right-radius: 10px;
font-size: 12px;
padding: 5px 10px;
}

.market-item .price {
position: absolute;
right: 0px;
top: 10px;
background: #9729fe;
padding: 7px 10px;
color: #fff;
border-bottom-left-radius: 10px;
}

.filter-select {
padding: 5px 15px;
float: right;
margin-left: 10px;
font-size: 20px;
height: 37px;
border: solid 1px pink;
color: pink;
border-radius: 1px;
}
.dark-mode .filter-select {
background: white !important;
border: solid 1px #685e71;
color: #000;

}
.menu a {
float: left;
margin-left: 30px;
font-weight: normal;
color: black;
cursor: pointer;
height: 32px;
padding-top: 13px;
margin-right: 0px;
}
.market-item .title {
position: absolute;
bottom: 0px;
left: 0px;
background: rgba(0, 0, 0, 0);
width: 100%;
padding: 10px 15px;
box-sizing: border-box;
color: #fffefe;
text-shadow: 0px 1px 1px #000;
/* box-shadow: 0px -1px 10px #616161; */
}

.market-item .title small {


float: right;
margin-top: 3px;
text-shadow: none;
font-size: 11px;
}
.market-item .price {
position: absolute;
right: 0px;
top: 0px;
background: rgba(234, 177, 97, 0.8);
padding: 7px 10px;
color: white;
border-bottom-left-radius: 10px;
}
.market-item .type {
position: absolute;
background: rgba(234, 177, 97, 0.8);
color: white;
padding: 5px;
border-bottom-right-radius: 10px;
font-size: 12px;
padding: 5px 10px;
}
.logo {
height: 50px;
margin-top: -0px;
margin-left: 21px;
}

.search-icon {
float: right;
position: absolute;
right: 0;
background: pink;
color: #fff;
height: 37px;
width: 37px;
text-align: center;
line-height: 37px !important;
border-top-right-radius: 0px;
border-bottom-right-radius: 0px;
cursor: pointer;
}

body {
font-family: "Roboto", sans-serif;
background:
url("https://i.pinimg.com/originals/de/45/6c/de456ca0dff9045dc5aefe3c637ce2de.jpg")
no-repeat fixed;
background-size: cover;
width: 100%;
margin: 0;
padding: 0;
box-sizing: border-box;
}

.table {
width: 100%;
box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
border: solid 1px #ddd;
border-radius: 5px;
overflow: hidden;
margin-bottom: 30px;
background-color: #ffccff; /* Pink background */
}

table {
border-collapse: collapse;
width: 100%;
}

th, td {
font-size: 14px;
color: #333; /* Dark text color for better readability */
padding: 10px;
text-align: left;
}

td:first-child,
th:first-child {
width: 10px;
}

td:last-child,
th:last-child {
width: 50px;
}

button, table a {
margin-right: 5px;
padding: 0.3vw;
float: left;
color: initial;
background-color: #ff99cc; /* Pink background */
border: none;
border-radius: 5px;
color: white; /* White text color */
text-decoration: none;
display: inline-block;
}

.dark-mode table a {
color: white;
}

.verification {
height: 16px;
float: left;
margin-right: 5px;
}

tr:nth-child(even) {
background-color: #ffb3d9; /* Light pink background */
}

tr th {
text-align: left;
font-size: 12px;
background-color: #ff80bf; /* Darker pink background */
color: white; /* White text color */
}

tr:hover {
background-color: #ff66b2 !important; /* Bright pink on hover */
}

b {
color: pink;
}

element.style {
color: pink;
}
.alert-info,
.alert {
padding: 5px 10px;
background: #ffb3d9; /* Light pink background */
border: solid 1px #ff99cc; /* Pink border */
border-radius: 2px;
margin-bottom: 20px;
width: 100%;
display: block;
font-size: 13px;
box-sizing: border-box;
color: #333; /* Dark text color for better readability */
}

.content-header {
height: 55px;
border-bottom: solid 1px #ddd;
margin-bottom: 20px;
}

.content-header-tab {
height: 60px;
}

.content-header-tab li {
float: left;
list-style: none;
font-weight: normal;
font-size: 21px;
margin-right: 25px;
padding-right: 25px;
border-right: solid 1px #ddd;
cursor: pointer;
color: #ffffff;
height: 35px;
line-height: 35px;
background-color: #ff80bf; /* Darker pink background */
border-radius: 5px;
}

.content-header-tab li.active {
font-weight: bold;
color: #8b2aff; /* Bright purple */
}

.content-header-tab li:last-child {
border-right: none;
}

.content-header-tab li i {
margin-right: 10px;
}

.account-balance, .balance span, p span, .field {


color: white; /* Pink text color */
}

.popup-content {
width: 760px;
max-height: 100vh;
height: 650px;
background: #ffccff; /* Pink background */
box-shadow: 0px 0px 10px #404040;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%, -50%);
overflow-x: hidden;
overflow-y: auto;
border-radius: 15px; /* Positive value for smooth border */
z-index: 101;
}

.popup-content h1 {
font-size: 20px;
padding: 10px 25px;
background: #ff99cc; /* Light pink background */
margin: 0;
color: white; /* Pink text color */
height: 45px;
box-sizing: border-box;
text-shadow: 0px 1px 2px #ff80bf; /* Darker pink shadow */
}

.popup-alternative .secondary-title {
color: white; /* Pink text color alt sellers */
}

.popup-charts .secondary-title {
color: white; /* Pink text color for the price changes*/
}

/* Additional classes for a cohesive pink theme */


button, .popup-content a {
margin-right: 5px;
padding: 0.3vw;
float: left;
color: white; /* Pink text color */
background-color: #ff99cc; /* Pink background */
border: none;
border-radius: 5px;
text-decoration: none;
display: inline-block;
}

.dark-mode table a {
color: #ff69b4; /* Pink text color */
}

.verification {
height: 16px;
float: left;
margin-right: 5px;
}

tr:nth-child(even) {
background-color: #ffb3d9; /* Light pink background */
}

tr th {
text-align: left;
font-size: 12px;
background-color: #ff80bf; /* Darker pink background */
color: white; /* Pink text color */
}

tr:hover {
background-color: #ff66b2 !important; /* Bright pink on hover */
}

.alert-info, .alert {
padding: 5px 10px;
background: #ffb3d9; /* Light pink background */
border: solid 1px #ff99cc; /* Pink border */
border-radius: 2px;
margin-bottom: 20px;
width: 100%;
display: block;
font-size: 13px;
box-sizing: border-box;
color: #ff69b4; /* Pink text color */
}

.content-header {
height: 55px;
border-bottom: solid 1px #ddd;
margin-bottom: 20px;
}

.content-header-tab {
height: 60px;
}

.content-header-tab li {
float: left;
list-style: none;
font-weight: normal;
font-size: 21px;
margin-right: 25px;
padding-right: 25px;
border-right: solid 1px #ddd;
cursor: pointer;
color: #ff69b4; /* Pink text color */
height: 35px;
line-height: 35px;
background-color: #ff80bf; /* Darker pink background */
border-radius: 5px;
}

.content-header-tab li.active {
font-weight: bold;
color: #8b2aff; /* Bright purple */
}

.content-header-tab li:last-child {
border-right: none;
}

.content-header-tab li i {
margin-right: 10px;
}

button, .popup-content a {
float: right;
list-style: none;
font-weight: normal;
font-size: 15px;
margin-right: 0px;
padding-right: 5px;
border-right: solid 0px #ddd;
cursor: pointer;
}

.popup-close {
float: right;
width: 45px;
height: 45px;
background: #ff69b4;
color: pink;
position: absolute;
right: 0px;
top: 0px;
text-align: center;
font-size: 30px;
line-height: 46px;
cursor: pointer;
}

.menu a {
float: left;
margin-left: 30px;
font-weight: normal;
color: white;
cursor: pointer;
height: 32px;
padding-top: 13px;
margin-right: 0px;
}

.stats-col li {
background: rgb(36, 173, 75);
background-image: url('https://media.tenor.com/lJHCtsh48h0AAAAC/ring-
cool.gif');
color: #fff;
padding: 7px 15px;
border-radius: 3px;
margin-bottom: 10px;
}

.stats-col li:nth-child(even) {
background: rgb(36, 173, 75);
background-image: url('https://media.tenor.com/lJHCtsh48h0AAAAC/ring-
cool.gif');
}

.stat-card {

background-image:
url('https://i.pinimg.com/originals/53/f0/e7/53f0e71f528d032ca2e64b9e76037282.gif')
;
color: #f238b4;
float: right;
width: 100px;
height: 60px;
text-align: center;
margin-left: 20px;
border-radius: 20px;
box-sizing: border-box;
}

.stat-card .label {
display: block;
font-size: 14px;
color: black;
}

.badge-icon {
position: relative;
width: 85px;
text-align: center;
background: #ef6cc1;
border-radius: 5px;
margin: 0 10px 10px 0;
/* overflow: hidden; */
}

.badge-icon p {
height: 25px;
background: #ff6ced;
padding: 0px;
margin: 0px;
line-height: 25px;
font-size: 13px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

.profile-actions ul li, .clans-actions ul li {


margin-bottom: 10px;
color: black;
height: 25px;
font-weight: bold;
font-size: 14px;
cursor: pointer;
}

.profile-actions ul li a, .clans-actions ul li a {
color: black;
}

.content li {
background: transparent !important;
color: white;
}

.status li {
color: black !important;
}

b {
color: white;
}

.link a {
color: purple !important;

.content-header-tab li.active {
font-weight: bold;
color: black;
}

.search-form i {
border: solid 1px #e175cf;
width: 32px;
height: 32px;
border-left: none;
line-height: 30px;
/* margin-left: -4px; */
margin: 0px;
padding-left: 8px;
display: block;
float: right;
box-sizing: border-box;
background: #f982f5;
color: #fff;
}

button, a.button {
background-color: #d15482;
border: none;
border-radius: 0.2vw;
color: #fff;
box-shadow: 0px 0.05vw 0.2vw rgba(0, 0, 0, 0.4);
padding: 0.4vw 0.9vw;
font-size: 0.8vw;
border-top: solid 1px rgba(255, 255, 255, 0.1);
cursor: pointer;
outline: none;
white-space: nowrap;
font-weight: bold;
font-size: 13px;
}

button, table a {
margin-right: 5px;
padding: 0.3vw;
float: left;
color: initial;
background-color: transparent;
border: none;
border-radius: 5px;
color: white;
text-decoration: none;
display: inline-block;
}

.rarity.Common {
background: #71f5c0;
}

.rarity.Rare {
background: #969ceb;
color: #fff;
}

.rarity.Legendary {
background: #f99272;
color: #fff;
}
.rarity.Common {
background: #969b99;
color: #fff;
}

.rarity.Uncommon {
background: #75ffb4;
}
.rarity.Mythical {
background: #ebd376;
color: #fff;
}

.autocomplete li {
padding: 10px 10px;
border-bottom: solid 1px black;
list-style: none;
cursor: pointer;
}

.content li {
background: transparent !important;
color: #cc5500;
}

.content li.active {
color: #800080
}

.slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: #e693d6;
-webkit-transition: 0.4s;
transition: 3s;
}

You might also like