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.
56 lines
1.1 KiB
56 lines
1.1 KiB
.container-ldb { |
|
width: 100%; |
|
} |
|
#myVideo { |
|
position: fixed; |
|
right: 0; |
|
bottom: 0; |
|
min-width: 100%; |
|
min-height: 100%; |
|
z-index: -1; |
|
} |
|
.head-board { |
|
display: grid; |
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; |
|
margin: auto; |
|
width: 60%; |
|
padding: 20px; |
|
font-size:x-large; |
|
border : 1px solid white; |
|
border-bottom-color: white; |
|
border-bottom-width: 1px; |
|
border-top-right-radius: 5px; |
|
border-top-left-radius: 5px; |
|
background-color: rgba(0, 0, 0, 0.5); |
|
} |
|
|
|
.leaderboard { |
|
display: flex; |
|
margin: auto; |
|
align-items: center; |
|
flex-direction: column; |
|
border : 1px solid white; |
|
width: 60%; |
|
height: 350px; |
|
overflow-y: scroll; |
|
overflow-x: visible; |
|
background-color: rgba(0, 0, 0, 0.5); |
|
padding: 20px; |
|
border-bottom-right-radius: 5px; |
|
border-bottom-left-radius: 5px; |
|
scrollbar-width: none; |
|
} |
|
|
|
.player { |
|
width: 100%; |
|
display: grid; |
|
grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; |
|
border-bottom: 1px solid rgb(255, 255, 255); |
|
} |
|
|
|
.player p { |
|
padding: 5px; |
|
color: white; |
|
font-size: large; |
|
text-align: start; |
|
}
|
|
|