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.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. .terminal {
  63. margin:5%;
  64. padding: 1%;
  65. width: 80%;
  66. border: 1px solid black;
  67. border-radius: 5px;
  68. }
  69. #term {
  70. font-size: large;
  71. width: 100%;
  72. height: 20em;
  73. }
  74. #clear_term {
  75. margin: 2px;
  76. }
  77. input[type="number"] {
  78. width: 100px;
  79. }
  80. input:invalid+span:after {
  81. content: '✖';
  82. padding-left: 5px;
  83. }
  84. input:valid+span:after {
  85. content: '✓';
  86. padding-left: 5px;
  87. }