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

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