1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- body {
- margin: 0;
- font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
- 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
- sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .spoiler {
- border: 2px solid coral;
- width: 40%;
- display: flex;
- flex-direction: column;
- align-items: center;
- padding: 3px;
- background-color: aqua;
- }
- code {
- font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
- monospace;
- }
- #rangeInput {
- width: 40%;
- background-color: orange;
- padding: 5px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- #passwordConfirm {
- width: 40%;
- background-color: rgb(217, 255, 0);
- padding: 5px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- #timerControl {
- width: 40%;
- background-color: rgb(105, 100, 102);
- padding: 5px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- #timer {
- width: 100%;
- background-color: rgb(214, 36, 104);
- padding: 0px;
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
|