The esp8266 portion of the project
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.

185 lines
2.7 KiB

  1. .nav-pills .nav-link.active,
  2. .nav-pills .show>.nav-link {
  3. color: #fff;
  4. background-color: #00878F;
  5. }
  6. @font-face {
  7. font-family: 'nunitoregular';
  8. src: url('nunito-regular-webfont.woff2') format('woff2'), url('nunito-regular-webfont.woff') format('woff');
  9. font-weight: normal;
  10. font-style: normal;
  11. }
  12. iframe {
  13. border: none;
  14. align-self: center;
  15. align-content: center;
  16. align-items: center;
  17. }
  18. center {
  19. width: 70%;
  20. max-width: 100%;
  21. margin: 0px auto;
  22. font-family: 'Roboto', sans-serif;
  23. color: #444;
  24. }
  25. header {
  26. background-color: #00878F;
  27. color: white;
  28. padding: 6px;
  29. font-family: 'Roboto', sans-serif;
  30. box-shadow: 1px 1px 5px #555555;
  31. position: relative;
  32. }
  33. h1 {
  34. margin: 0px;
  35. font-family: 'Roboto', sans-serif;
  36. font-size: 32;
  37. }
  38. h2 {
  39. color: #00878f;
  40. }
  41. h3 {
  42. color: #00878f;
  43. }
  44. .shadow {
  45. box-shadow: 1px 1px 5px #555555;
  46. /* height: 500px; */
  47. }
  48. .navmenu {
  49. margin-top: 10px;
  50. margin-left: 0px;
  51. }
  52. .navm {
  53. margin: 2px;
  54. }
  55. radio {
  56. float: left;
  57. }
  58. .content {
  59. margin: 10px 10px 10px 10px
  60. }
  61. table {
  62. margin: 5px 24px 5px 12px;
  63. border: #000000
  64. }
  65. .tbl {
  66. margin-top: 10px;
  67. margin-bottom: 5px;
  68. border: #000000
  69. }
  70. td {
  71. color: #555;
  72. }
  73. /* tr {
  74. width: 100%;
  75. } */
  76. .button {
  77. text-decoration: none;
  78. border: none;
  79. color: white;
  80. background-color: #00878F;
  81. padding: 6px 24px;
  82. font-size: 16px;
  83. cursor: pointer;
  84. box-shadow: 1px 1px 6px #555;
  85. outline: none;
  86. margin: 12px auto 0px auto;
  87. display: inline-block;
  88. }
  89. .button:hover {
  90. box-shadow: 1px 1px 3px #444;
  91. }
  92. hr {
  93. width: 97%;
  94. margin-right: 10px;
  95. }
  96. input[type=range] {
  97. -webkit-appearance: none;
  98. outline: none;
  99. width: auto;
  100. margin: 6px;
  101. }
  102. input {
  103. width: 95px;
  104. height: 20px;
  105. }
  106. input[type=range]::-webkit-slider-thumb {
  107. -webkit-appearance: none;
  108. border: 0px;
  109. height: 15px;
  110. width: 15px;
  111. margin-top: -6px;
  112. border-radius: 7.5px;
  113. }
  114. input.disabled[type=range]::-webkit-slider-thumb {
  115. background: #999;
  116. }
  117. input.enabled[type=range]::-webkit-slider-thumb {
  118. background: #00878F;
  119. cursor: pointer;
  120. box-shadow: 1px 1px 2px #777, 0px 0px 1px #777;
  121. }
  122. input[type=range]::-webkit-slider-runnable-track {
  123. width: inherit;
  124. height: 4px;
  125. background: #ccc;
  126. border-radius: 1px;
  127. }
  128. input.enabled[type=range]::-webkit-slider-runnable-track {
  129. cursor: pointer;
  130. }
  131. p {
  132. font-family: 'Nunito', sans-serif;
  133. }
  134. /* section styles */
  135. section article {
  136. width: 33%;
  137. float: left;
  138. }
  139. section p {
  140. margin: 5px 0;
  141. }
  142. section ul {
  143. margin-top: 0;
  144. }
  145. @media screen and (max-width: 900px) {
  146. center {
  147. width: 90%;
  148. }
  149. .content {
  150. height: 600px;
  151. }
  152. }