You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and dots ('.'), can be up to 35 characters long. Letters must be lowercase.
140 lines
2.2 KiB
140 lines
2.2 KiB
* { |
|
font-family: M42; |
|
font-size: 10px; |
|
} |
|
|
|
.deploy-bar { |
|
display: flex; |
|
flex-direction: column; |
|
width: 100%; |
|
margin: auto; |
|
margin-top: 40px; |
|
} |
|
|
|
.btn-deploy { |
|
margin: auto; |
|
color: white; |
|
background-color: black; |
|
border-radius: 10px 10px 0px 0px; |
|
width: 70%; |
|
} |
|
|
|
.container-ldb { |
|
margin: auto; |
|
width: 100%; |
|
} |
|
|
|
.head-board { |
|
display: flex; |
|
margin: auto; |
|
justify-content: space-between; |
|
width: 70%; |
|
border: 0px solid black; |
|
border-top-color: white; |
|
border-bottom-color: white; |
|
border-bottom-width: 1px; |
|
|
|
background-color: black; |
|
|
|
} |
|
|
|
.leaderboard { |
|
display: flex; |
|
margin: auto; |
|
align-items: center; |
|
flex-direction: column; |
|
width: 70%; |
|
height: 50vh; |
|
overflow-y: scroll; |
|
overflow-x: visible; |
|
|
|
background-color: black; |
|
scrollbar-width: none; |
|
/* Firefox */ |
|
-ms-overflow-style: none; |
|
} |
|
|
|
.leaderboard::-webkit-scrollbar { |
|
width: 0 !important |
|
} |
|
|
|
article { |
|
width: 100%; |
|
display: flex; |
|
justify-content: space-between; |
|
border-bottom: 1px solid rgb(255, 255, 255); |
|
} |
|
|
|
p { |
|
padding: 5px; |
|
text-align: start; |
|
} |
|
|
|
.num { |
|
font-size: larger; |
|
color: rgb(255, 255, 255); |
|
} |
|
|
|
.faction { |
|
color: rgb(0, 255, 115); |
|
} |
|
|
|
.headquarters { |
|
color: rgb(86, 187, 255); |
|
} |
|
|
|
.symbol { |
|
color: red; |
|
text-decoration: underline; |
|
} |
|
|
|
.credits { |
|
color: rgb(250, 204, 88); |
|
} |
|
|
|
.ships { |
|
color: rgb(146, 146, 146); |
|
} |
|
|
|
.btn-cont { |
|
margin: auto; |
|
display: flex; |
|
justify-content: space-between; |
|
width: 70%; |
|
} |
|
|
|
button:hover { |
|
transition: ease-in-out; |
|
color: black; |
|
transition-duration: 0.3s; |
|
background-color: white; |
|
} |
|
|
|
button { |
|
padding: 15px; |
|
} |
|
|
|
.btn-cred { |
|
background-color: black; |
|
color: rgb(250, 204, 88); |
|
width: 50%; |
|
font-size: 11px; |
|
border-left-color: black; |
|
border: 3px none none 3px; |
|
border-bottom: none; |
|
border-top-color: white; |
|
border-radius: 0px 0px 0px 10px; |
|
} |
|
|
|
.btn-ship { |
|
background-color: black; |
|
color: rgb(86, 187, 255); |
|
width: 50%; |
|
font-size: 11px; |
|
border: 3px none none 3px; |
|
border-bottom: none; |
|
border-right-color: white; |
|
border-left-color: black; |
|
border-top-color: white; |
|
border-radius: 0px 0px 10px 0px; |
|
} |