parent
8962158b46
commit
80589ba76a
4 changed files with 105 additions and 14 deletions
@ -0,0 +1,68 @@ |
||||
@font-face { |
||||
font-family: M42; |
||||
src: url(/fonts/m42.TTF); |
||||
} |
||||
*{ |
||||
font-family: M42; |
||||
font-size: 10px; |
||||
} |
||||
.head-board { |
||||
display: flex; |
||||
margin:auto; |
||||
justify-content: space-between; |
||||
flex-direction: row; |
||||
width: 50%; |
||||
border: 2px solid black; |
||||
border-bottom-color: white; |
||||
border-bottom-width: 1px; |
||||
border-bottom-left-radius: 0px; |
||||
border-bottom-right-radius: 0px; |
||||
border-top-left-radius: 10px; |
||||
border-top-right-radius: 10px; |
||||
background-color: black; |
||||
|
||||
} |
||||
|
||||
.leaderboard { |
||||
display: flex; |
||||
margin: auto; |
||||
align-items: center; |
||||
flex-direction: column; |
||||
width: 50%; |
||||
height: 50vh; |
||||
overflow-y: scroll; |
||||
border: 2px solid black; |
||||
border-bottom-left-radius: 10px; |
||||
border-bottom-right-radius: 10px; |
||||
border-top-left-radius: 0px; |
||||
border-top-right-radius: 0px; |
||||
background-color: black; |
||||
scrollbar-width: none; /* Firefox */ |
||||
} |
||||
article{ |
||||
width: 99.9%; |
||||
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); |
||||
} |
Binary file not shown.
Loading…
Reference in New Issue