add website
This commit is contained in:
@@ -0,0 +1,323 @@
|
||||
.text-secondary {
|
||||
color: #c3c3c3 !important;
|
||||
}
|
||||
|
||||
.nav-link {
|
||||
color: #a0a0a0 !important;
|
||||
text-decoration: none;
|
||||
padding: 10px 14px;
|
||||
font-size: 0.875rem;
|
||||
font-weight: 600;
|
||||
border-bottom: 2px solid transparent;
|
||||
transition: color 0.12s, border-color 0.12s;
|
||||
}
|
||||
|
||||
.nav-link:hover {
|
||||
color: #e3e3e3 !important;
|
||||
}
|
||||
|
||||
.nav-link.active {
|
||||
color: #ffffff !important;
|
||||
border-bottom-color: #ffffff;
|
||||
}
|
||||
|
||||
.details-container h2 {
|
||||
font-size: 1.4rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.details-container p {
|
||||
font-size: 0.8rem;
|
||||
color: #909090;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.redBg {
|
||||
background: #CE645B;
|
||||
width: 100%;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.greenBg {
|
||||
background: #52A846;
|
||||
height: 5px;
|
||||
}
|
||||
|
||||
.borderLeft {
|
||||
border-left: 1px solid #393b3d;
|
||||
}
|
||||
|
||||
.thumbsText {
|
||||
font-size: 12px;
|
||||
}
|
||||
|
||||
.usersVote {
|
||||
padding: 0 28px;
|
||||
height: 30px;
|
||||
position: relative;
|
||||
max-width: 300px;
|
||||
width: 70%;
|
||||
display: block;
|
||||
float: right;
|
||||
margin-top: 0.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: #c0c0c0;
|
||||
}
|
||||
|
||||
.countright {
|
||||
float: right;
|
||||
color: #c0c0c0;
|
||||
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;
|
||||
}
|
||||
|
||||
.text-robux {
|
||||
color: #1ad467;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.page-tabs {
|
||||
display: flex;
|
||||
border-bottom: 2px solid #393b3d;
|
||||
background-color: #242424;
|
||||
border-radius: 4px 4px 0 0;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.tab-content > .tab-pane {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.tab-content > .tab-pane.show.active {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.game-badge-row {
|
||||
background-color: #2a2a2a;
|
||||
border-radius: 4px;
|
||||
margin-bottom: 6px;
|
||||
padding: 10px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.server-row {
|
||||
background-color: #141414;
|
||||
border-radius: 4px;
|
||||
margin: 6px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.server-players-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 4px;
|
||||
min-height: 60px;
|
||||
background-color: #0f0f0f;
|
||||
border-radius: 3px;
|
||||
padding: 6px;
|
||||
margin-top: 8px;
|
||||
}
|
||||
|
||||
.server-fill-bar {
|
||||
height: 6px;
|
||||
border-radius: 3px;
|
||||
background-color: #2a2a2a;
|
||||
overflow: hidden;
|
||||
margin-top: 6px;
|
||||
}
|
||||
|
||||
.server-fill-inner {
|
||||
height: 100%;
|
||||
background-color: #b0b0b0;
|
||||
}
|
||||
|
||||
.gamepass-card {
|
||||
width: 150px;
|
||||
min-height: 200px;
|
||||
background-color: #2c2c2c;
|
||||
box-shadow: 0 0 5px #000;
|
||||
border-radius: 4px;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.launch-modal-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
z-index: 10000;
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.launch-modal-box {
|
||||
background-color: #1e1e1e;
|
||||
box-shadow: 0 0 20px #000;
|
||||
border-radius: 8px;
|
||||
padding: 24px;
|
||||
min-width: 400px;
|
||||
min-height: 220px;
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.progress {
|
||||
width: 100%;
|
||||
height: 20px;
|
||||
background-color: #2a2a2a;
|
||||
border-radius: 4px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.progress-bar {
|
||||
height: 100%;
|
||||
background-color: #0066ff;
|
||||
background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
|
||||
background-size: 1rem 1rem;
|
||||
animation: progress-bar-stripes 1s linear infinite;
|
||||
}
|
||||
|
||||
@keyframes progress-bar-stripes {
|
||||
from { background-position: 1rem 0; }
|
||||
to { background-position: 0 0; }
|
||||
}
|
||||
|
||||
.purchase-modal {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
z-index: 10001;
|
||||
display: none;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.purchase-modal.open {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.purchase-modal-box {
|
||||
background-color: #242424;
|
||||
border: 1px solid #393b3d;
|
||||
border-radius: 6px;
|
||||
min-width: 340px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.purchase-modal-header {
|
||||
padding: 14px 18px;
|
||||
border-bottom: 1px solid #393b3d;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.purchase-modal-body {
|
||||
padding: 16px 18px;
|
||||
}
|
||||
|
||||
.purchase-modal-footer {
|
||||
padding: 12px 18px;
|
||||
border-top: 1px solid #393b3d;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 8px;
|
||||
}
|
||||
Reference in New Issue
Block a user