LEDs.css 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. .animationsContainer {
  2. display: grid;
  3. grid-row: 2/-1;
  4. grid-column: 2/-1;
  5. margin: 10px 10px;
  6. height: 100%;
  7. grid-template-rows: 10vh auto auto 10vh;
  8. grid-template-columns: repeat(5, 1fr);
  9. grid-gap: 10px;
  10. }
  11. .animationsContainer h2 {
  12. grid-column: 1/-1;
  13. grid-row: 1/2;
  14. color: white;
  15. font-size: 50px;
  16. align-self: center;
  17. text-align: center;
  18. font-family: 'Raleway', sans-serif;
  19. }
  20. .animationsContainer button {
  21. border: solid #252531 2px;
  22. border-radius: 10px;
  23. background-color: #252531;
  24. color: white;
  25. font-size: 40px;
  26. font-family: 'Roboto', sans-serif;
  27. }
  28. .animationsContainer button:hover {
  29. background-color: #2f2f3d;
  30. }
  31. .settingsContainer {
  32. margin: 10px;
  33. display: grid;
  34. grid-template-columns: repeat(5, 1fr);
  35. grid-template-rows: 10vh 10vh 10vh 20vh 20vh 10vh;
  36. grid-gap: 10px;
  37. }
  38. .settingsContainer h2 {
  39. grid-column: 1/-1;
  40. grid-row: 1/2;
  41. color: white;
  42. font-size: 50px;
  43. align-self: center;
  44. text-align: center;
  45. font-family: 'Raleway', sans-serif;
  46. }
  47. .settingUnit p {
  48. color: white;
  49. font-family: 'Roboto', sans-serif;
  50. text-align: center;
  51. font-size: 28px;
  52. }
  53. .settingUnit input {
  54. display: block;
  55. margin: auto;
  56. width: 95%;
  57. border: none;
  58. background-color: #47475b;
  59. color: white;
  60. height: 30px;
  61. font-size: 20px;
  62. font-family: 'Roboto', sans-serif;
  63. }
  64. .settingsContainer button {
  65. border: solid #252531 2px;
  66. border-radius: 10px;
  67. background-color: #252531;
  68. color: white;
  69. font-size: 30px;
  70. font-family: 'Roboto', sans-serif;
  71. }
  72. .settingsContainer button:hover {
  73. background-color: #2f2f3d;
  74. }
  75. #set {
  76. grid-row: -2/-1;
  77. grid-column: -2/-1;
  78. }