style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. @font-face {
  2. font-family: "Poiret One";
  3. src: URL("PoiretOne-Regular.ttf") format("truetype");
  4. }
  5. body {
  6. background-color: lightgreen;
  7. -webkit-touch-callout: none;
  8. -webkit-user-select: none;
  9. -khtml-user-select: none;
  10. -moz-user-select: none;
  11. -ms-user-select: none;
  12. -o-user-select: none;
  13. user-select: none;
  14. }
  15. .row {
  16. margin: 0;
  17. }
  18. #header {
  19. margin-top: 50px;
  20. text-align: center;
  21. font-family: "Poiret One", cursive;
  22. font-size: 50px;
  23. color: #545454;
  24. }
  25. #main-ul {
  26. list-style: none;
  27. padding: 0;
  28. width: 100%;
  29. margin-top: 20px;
  30. }
  31. .sb-li {
  32. display: inline-block;
  33. width: 50%;
  34. float: left;
  35. }
  36. .sb-ul {
  37. list-style: none;
  38. width: 100px;
  39. margin-left: auto;
  40. margin-right: auto;
  41. padding: 20px;
  42. }
  43. .sb-li2 {
  44. text-align: center;
  45. width: 100px;
  46. height: 30px;
  47. color: white;
  48. font-size: 30px;
  49. margin-top: 5px;
  50. }
  51. .sb-li2:first-child {
  52. font-family: "Poiret One", cursive;
  53. }
  54. .clickable {
  55. cursor: pointer;
  56. }
  57. #pomodoro-clock {
  58. background-color: lightblue;
  59. border: 2px solid black;
  60. border-radius: 30px;
  61. cursor: pointer;
  62. }
  63. #progress {
  64. margin-top: 50px;
  65. width: 80%;
  66. margin-left: auto;
  67. margin-right: auto;
  68. }
  69. #timer {
  70. text-align: center;
  71. }
  72. #state {
  73. text-align: center;
  74. }
  75. @media (max-width: 800px) {
  76. body {
  77. min-width: 800px;
  78. }
  79. }