style.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. * {
  2. box-sizing: border-box
  3. }
  4. html {
  5. font-family: Arial, Helvetica, sans-serif;
  6. display: inline-block;
  7. margin: 0px auto;
  8. text-align: center;
  9. }
  10. h1,
  11. h3 {
  12. color: white;
  13. font-size: 1.8rem;
  14. }
  15. .topnav {
  16. overflow: hidden;
  17. background-color: #143642;
  18. }
  19. body {
  20. margin: 0;
  21. }
  22. .card {
  23. background-color: #F8F7F9;
  24. box-shadow: 2px 2px 12px 1px rgba(140, 140, 140, .5);
  25. padding-top: 10px;
  26. padding-bottom: 20px;
  27. }
  28. .toggle_button {
  29. padding: 15px 50px;
  30. font-size: 24px;
  31. text-align: center;
  32. outline: none;
  33. color: #fff;
  34. background-color: #0f8b8d;
  35. border: none;
  36. border-radius: 5px;
  37. -webkit-touch-callout: none;
  38. -webkit-user-select: none;
  39. -khtml-user-select: none;
  40. -moz-user-select: none;
  41. -ms-user-select: none;
  42. user-select: none;
  43. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  44. }
  45. .toggle_button:active {
  46. background-color: #0f8b8d;
  47. box-shadow: 2 2px #CDCDCD;
  48. transform: translateY(2px);
  49. }
  50. .toggle_button:hover {
  51. cursor: pointer;
  52. }
  53. .led-green {
  54. margin: 0 auto;
  55. width: 24px;
  56. height: 24px;
  57. background-color: #ABFF00;
  58. border-radius: 50%;
  59. box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #304701 0 -1px 9px, #89FF00 0 2px 12px;
  60. }
  61. .led-red {
  62. margin: 0 auto;
  63. width: 24px;
  64. height: 24px;
  65. background-color: #F00;
  66. border-radius: 50%;
  67. box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #441313 0 -1px 9px, rgba(255, 0, 0, 0.5) 0 2px 12px;
  68. }
  69. .layout {
  70. max-width: 1200px;
  71. margin: 0 auto;
  72. display: grid;
  73. gap: 1rem;
  74. }
  75. @media (min-width: 300px) {
  76. .layout {
  77. grid-template-columns: repeat(1, 1fr);
  78. }
  79. }
  80. @media (min-width: 600px) {
  81. .layout {
  82. grid-template-columns: repeat(2, 1fr);
  83. }
  84. }
  85. @media (min-width: 900px) {
  86. .layout {
  87. grid-template-columns: repeat(3, 1fr);
  88. }
  89. }
  90. .options_button_div {
  91. text-align: right;
  92. }
  93. .options_button {
  94. border: none;
  95. background-color: #F8F7F9;
  96. }
  97. .options_button:hover {
  98. cursor: pointer;
  99. }
  100. .options_button:active {
  101. transform: translateY(2px);
  102. }
  103. img {
  104. width: 1.5em;
  105. height: auto;
  106. }
  107. /* The Modal (background) */
  108. .modal {
  109. display: none;
  110. /* Hidden by default */
  111. position: fixed;
  112. /* Stay in place */
  113. z-index: 1;
  114. /* Sit on top */
  115. left: 0;
  116. top: 0;
  117. width: 100%;
  118. /* Full width */
  119. height: 100%;
  120. /* Full height */
  121. overflow: auto;
  122. /* Enable scroll if needed */
  123. background-color: rgb(0, 0, 0);
  124. /* Fallback color */
  125. background-color: rgba(0, 0, 0, 0.4);
  126. /* Black w/ opacity */
  127. }
  128. /* Modal Content/Box */
  129. .modal-content {
  130. background-color: #fefefe;
  131. margin: 10% auto;
  132. /* 15% from the top and centered */
  133. padding: 20px;
  134. border: 1px solid #888;
  135. width: 400px;
  136. /* Could be more or less, depending on screen size */
  137. }
  138. /* The Close Button */
  139. .close {
  140. color: red;
  141. float: right;
  142. font-size: 35px;
  143. font-weight: bold;
  144. }
  145. .close:hover,
  146. .close:focus {
  147. color: white;
  148. text-decoration: none;
  149. cursor: pointer;
  150. }
  151. label {
  152. display: inline-block;
  153. text-align: left;
  154. width: 75px;
  155. }
  156. ul {
  157. list-style-type: none;
  158. margin: 0;
  159. padding: 0;
  160. overflow: hidden;
  161. background-color: #333;
  162. }
  163. li {
  164. float: left;
  165. }
  166. li a {
  167. display: block;
  168. color: white;
  169. text-align: center;
  170. padding: 14px 16px;
  171. text-decoration: none;
  172. }
  173. li a:hover {
  174. background-color: #111;
  175. }