Fork of the espurna firmware for `mhsw` switches
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.

151 lines
2.3 KiB

7 years ago
7 years ago
  1. #menu .pure-menu-heading {
  2. font-size: 100%;
  3. padding: .5em .5em;
  4. }
  5. .header h2 {
  6. font-size: 1em;
  7. }
  8. .panel {
  9. display: none;
  10. }
  11. .footer {
  12. position: absolute;
  13. bottom: 0;
  14. left: 0;
  15. right: 0;
  16. padding: 10px;
  17. font-size: 80%;
  18. color: #999;
  19. }
  20. #menu .footer a {
  21. text-decoration: none;
  22. padding: 0px;
  23. }
  24. .content {
  25. margin: 0px;
  26. }
  27. .page {
  28. margin-top: 40px;
  29. }
  30. .pure-button {
  31. color: white;
  32. padding: 8px 12px;
  33. border-radius: 4px;
  34. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  35. }
  36. .main-buttons {
  37. margin: 50px auto;
  38. text-align: center;
  39. }
  40. .main-buttons button {
  41. width: 100px;
  42. margin: 5px auto;
  43. }
  44. .button-update-password,
  45. .button-update {
  46. background: #1f8dd6;
  47. }
  48. .button-reset,
  49. .button-reconnect {
  50. background: rgb(202, 60, 60);
  51. }
  52. .button-upgrade {
  53. background: rgb(202, 60, 60);
  54. margin-left: 5px;
  55. }
  56. .button-upgrade-browse,
  57. .button-apikey {
  58. background: rgb(0, 202, 0);
  59. margin-left: 5px;
  60. }
  61. .button-add-network {
  62. background: rgb(28, 184, 65);
  63. }
  64. .button-del-network {
  65. background: rgb(202, 60, 60);
  66. }
  67. .button-more-network {
  68. background: rgb(223, 117, 20);
  69. }
  70. .button-settings-backup,
  71. .button-settings-restore {
  72. background: rgb(0, 202, 0);
  73. }
  74. .pure-g {
  75. margin-bottom: 20px;
  76. }
  77. legend {
  78. font-weight: bold;
  79. }
  80. .l-box {
  81. padding-right: 1px;
  82. }
  83. .pure-form input[type=text][disabled] {
  84. color: #777777;
  85. }
  86. div.hint {
  87. font-size: 80%;
  88. color: #ccc;
  89. }
  90. .break {
  91. margin-top: 5px;
  92. }
  93. #networks .pure-g {
  94. padding-bottom: 10px;
  95. margin-bottom: 5px;
  96. border-bottom: 2px dashed #e5e5e5;
  97. }
  98. #networks div.more {
  99. display: none;
  100. }
  101. .module {
  102. display: none;
  103. }
  104. .template {
  105. display: none;
  106. }
  107. input[name=upgrade] {
  108. display: none;
  109. }
  110. #upgrade-progress {
  111. display: none;
  112. width: 100%;
  113. height: 20px;
  114. margin-top: 10px;
  115. }
  116. .pure-form .center {
  117. margin: .5em 0 .2em;
  118. }
  119. .webmode {
  120. display: none;
  121. }
  122. #credentials {
  123. font-size: 200%;
  124. text-align: center;
  125. height: 100px;
  126. width: 400px;
  127. position: fixed;
  128. top: 50%;
  129. left: 50%;
  130. margin-top: -50px;
  131. margin-left: -200px;
  132. }
  133. div.state {
  134. border-top: 1px solid #eee;
  135. margin-top: 20px;
  136. padding-top: 30px;
  137. }
  138. .state div {
  139. font-size: 80%;
  140. }
  141. .state span {
  142. font-size: 80%;
  143. font-weight: bold;
  144. }
  145. .right {
  146. text-align: right;
  147. }