ESP8266 Treppenlichtsteuerung mit OTA zum Firmware Upload
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. html {
  2. font-size: 16px;
  3. font-family: sans-serif, Arial, Helvetica;
  4. background-color: #d4d4d4;
  5. height: 100%;
  6. background-image: url('Background.png');
  7. background-repeat: repeat;
  8. background-size: 150% 150%;
  9. }
  10. body {
  11. height: 100%;
  12. margin: 0 auto;
  13. border: none;
  14. border-radius: 3;
  15. }
  16. .topbar {
  17. padding: 1em;
  18. background-color: #1f1f1f;
  19. color: white;
  20. font-size: x-large;
  21. text-align: center;
  22. }
  23. .ueberschrift{
  24. color: #ffffff;
  25. font-size: 50px;
  26. width: 100%;
  27. text-align: center;
  28. }
  29. .regler{
  30. -webkit-appearance: none;
  31. height: 30px;
  32. width: 100%;
  33. border-radius: 20px;
  34. outline: black;
  35. background-color: rgb(176, 188, 228);
  36. }
  37. .regler::-webkit-slider-thumb{
  38. -webkit-appearance: none;
  39. appearance: none;
  40. width: 5%;
  41. height: 20px;
  42. border-radius: 10px;
  43. background-color: rgb(107, 122, 192);
  44. cursor:pointer;
  45. }
  46. input[type=range]::-webkit-slider-thumb{
  47. -webkit-appearance: none;
  48. border:none;
  49. height: 30px;
  50. width: 4%;
  51. border-radius: 30px;
  52. }
  53. .slider {
  54. width: 100%;
  55. }
  56. .kopfzeile{
  57. color: #1f1f1f;
  58. font-size: 50px;
  59. width: 100%;
  60. background-color: #8d8a8a;
  61. }
  62. /*-------------------------------------------------------*/
  63. /*Switch:
  64. .switch {
  65. position: relative;
  66. display: inline-block;
  67. width: 60px;
  68. height: 34px;
  69. }
  70. Hide default HTML checkbox
  71. .switch input {
  72. opacity: 0;
  73. width: 0;
  74. height: 0;
  75. }
  76. */
  77. /* The slider */
  78. /*input:checked + .slider {
  79. background-color: #04AA6D;
  80. }
  81. input:focus + .slider {
  82. box-shadow: 0 0 1px #04AA6D;
  83. }*/
  84. /*
  85. input:checked + .slider:before {
  86. -webkit-transform: translateX(26px);
  87. -ms-transform: translateX(26px);
  88. transform: translateX(26px);
  89. }