2023-06-13 03:47:43 +00:00
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-06-14 01:18:01 +00:00
|
|
|
:root {
|
|
|
|
font-size: 2rem;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
background-color: #191919;
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
#center {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
position: absolute;
|
2023-06-13 03:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.rotate90 {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotate180 {
|
|
|
|
transform: rotate(180deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rotate270 {
|
|
|
|
transform: rotate(270deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
.sprite {
|
|
|
|
position: absolute;
|
2023-06-15 03:22:26 +00:00
|
|
|
/* transition: left .1s, top .1s; */
|
2023-06-13 03:47:43 +00:00
|
|
|
z-index: 2;
|
|
|
|
}
|
2023-06-14 01:18:01 +00:00
|
|
|
|
|
|
|
#join, #lobby {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lobby span {
|
|
|
|
margin-bottom: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lobby #start {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#lobby #players {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
input {
|
|
|
|
background-color: transparent;
|
|
|
|
outline: none;
|
|
|
|
box-shadow: none;
|
|
|
|
color: #fff;
|
|
|
|
font-size: 1rem;
|
|
|
|
border: solid 2px #fff;
|
|
|
|
padding: .25rem;
|
|
|
|
margin-bottom: .215rem;
|
|
|
|
}
|
|
|
|
|
2023-06-15 03:22:26 +00:00
|
|
|
#fps {
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
z-index: 99;
|
|
|
|
font-size: 20;
|
|
|
|
font-style: monospace;
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
}
|