mirror of
https://github.com/neogeek23/neogeek23.github.io.git
synced 2026-02-04 10:58:21 +00:00
19 lines
316 B
CSS
19 lines
316 B
CSS
body{
|
|
text-align: center;
|
|
background-color: black;
|
|
}
|
|
|
|
#board{
|
|
width: calc(95% - 2px);
|
|
margin-top: 5%;
|
|
border: 1px white solid;
|
|
/*border-radius: 4px;*/
|
|
}
|
|
|
|
@media only screen and (min-width: 1000px) {
|
|
#board{
|
|
width: 1000px;
|
|
/*border-radius: 8px;*/
|
|
}
|
|
}
|