mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-04 02:48:17 +00:00
36 lines
532 B
CSS
36 lines
532 B
CSS
body{
|
|
text-align: center;
|
|
background-color: black;
|
|
color:white;
|
|
}
|
|
|
|
#board{
|
|
width: calc(95% - 2px);
|
|
margin-top: 5%;
|
|
border: 1px white solid;
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.human_points,
|
|
.bot_points{
|
|
margin-top: 2.5%;
|
|
display: inline-block;
|
|
}
|
|
|
|
.human_points{
|
|
position: absolute;
|
|
left: 5%;
|
|
}
|
|
|
|
.bot_points{
|
|
position: absolute;
|
|
right: calc(4% + 3ch);
|
|
}
|
|
|
|
.human_points:before{
|
|
content: 'Home Team: ';
|
|
}
|
|
|
|
.bot_points:before{
|
|
content: 'Hal Team: ';
|
|
} |