index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  4. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  5. sans-serif;
  6. -webkit-font-smoothing: antialiased;
  7. -moz-osx-font-smoothing: grayscale;
  8. }
  9. .spoiler {
  10. border: 2px solid coral;
  11. width: 40%;
  12. display: flex;
  13. flex-direction: column;
  14. align-items: center;
  15. padding: 3px;
  16. background-color: aqua;
  17. }
  18. code {
  19. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  20. monospace;
  21. }
  22. #rangeInput {
  23. width: 40%;
  24. background-color: orange;
  25. padding: 5px;
  26. display: flex;
  27. flex-direction: column;
  28. justify-content: center;
  29. align-items: center;
  30. }
  31. #passwordConfirm {
  32. width: 40%;
  33. background-color: rgb(217, 255, 0);
  34. padding: 5px;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: center;
  38. align-items: center;
  39. }
  40. #timerControl {
  41. width: 40%;
  42. background-color: rgb(105, 100, 102);
  43. padding: 5px;
  44. display: flex;
  45. flex-direction: column;
  46. justify-content: center;
  47. align-items: center;
  48. }
  49. #timer {
  50. width: 100%;
  51. background-color: rgb(214, 36, 104);
  52. padding: 0px;
  53. display: flex;
  54. flex-direction: column;
  55. justify-content: center;
  56. align-items: center;
  57. }