board/public/style.css

67 lines
868 B
CSS
Raw Normal View History

2022-01-05 04:28:55 +00:00
* {
2022-01-07 00:00:07 +00:00
box-sizing: border-box;
2022-01-05 04:28:55 +00:00
}
body {
2022-01-07 00:00:07 +00:00
margin: 0;
overflow: hidden;
font-family: "Trebuchet MS", Arial, sans-serif;
touch-action: none;
2022-01-05 04:28:55 +00:00
}
2022-01-07 01:49:46 +00:00
#bottom {
2022-01-07 00:00:07 +00:00
position: fixed;
2022-01-08 06:03:43 +00:00
display: flex;
2022-01-07 00:00:07 +00:00
bottom: 0;
2022-01-07 01:49:46 +00:00
left: 0;
width: 100%;
border-top: solid #cccccc 2px;
background: #f5f5f5;
padding: 8px;
2022-01-05 04:28:55 +00:00
}
2022-01-08 06:03:43 +00:00
#picker {
flex: 1;
}
2022-01-07 01:49:46 +00:00
#picker button {
2022-01-07 00:00:07 +00:00
height: 2em;
width: 2em;
border-radius: 50%;
border: solid black 2px;
margin: 0 2px;
outline: none;
transform: scale(1);
transition: all 0.1s;
2022-01-05 04:28:55 +00:00
}
2022-01-07 01:49:46 +00:00
#picker button.selected {
2022-01-07 00:00:07 +00:00
transform: scale(0.8);
2022-01-05 04:28:55 +00:00
}
2022-10-05 01:03:22 +00:00
#status, #position {
margin-left: 16px;
2022-01-08 06:03:43 +00:00
display: flex;
align-items: center;
}
2022-10-05 01:03:22 +00:00
#position {
color: #444;
display: none;
}
2022-01-05 04:28:55 +00:00
#loading {
2022-01-07 00:00:07 +00:00
z-index: 9999;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #ffffff;
2022-01-05 04:28:55 +00:00
2022-01-07 00:00:07 +00:00
display: flex;
align-items: center;
justify-content: center;
font-size: 2em;
2022-01-05 04:28:55 +00:00
}