style.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /* Wifi Hotspot app for YunoHost
  2. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. * Contribute at https://github.com/labriqueinternet/hotspot_ynh
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU Affero General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU Affero General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Affero General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. li.status-info {
  19. color: #5BC0DE;
  20. }
  21. li.status-warning {
  22. color: #D9534F;
  23. }
  24. li.status-danger {
  25. color: #D9534F;
  26. }
  27. li.status-success {
  28. color: #5CB85C;
  29. }
  30. img#status-loading {
  31. display: none;
  32. padding-right: 5px;
  33. }
  34. img#save-loading {
  35. display: none;
  36. margin-left: 5px;
  37. }
  38. div#status {
  39. display: none;
  40. margin-top: 10px;
  41. }
  42. div#status ul {
  43. list-style-type: none;
  44. padding: 0;
  45. margin: 0;
  46. }
  47. div#github {
  48. margin: -10px 0 20px 20px;
  49. background: url(../img/github.png) no-repeat 0 4px;
  50. }
  51. div#github a {
  52. margin-left: 17px;
  53. }
  54. div#saveconfirmation {
  55. display: none;
  56. padding-right: 15px;
  57. width: 60%;
  58. margin: 15px auto 0;
  59. }
  60. div#saveconfirmation div#confirm {
  61. background-color: #fff;
  62. padding: 10px;
  63. margin: 15px 0 0 0;
  64. border: 1px solid #F5E79E;
  65. }
  66. div#wifiparty_screen {
  67. top: 0;
  68. left: 0;
  69. display: none;
  70. position: fixed;
  71. height: 100vh;
  72. width: 100vw;
  73. z-index: 998;
  74. background-color: #fff;
  75. text-align: center;
  76. }
  77. div#wifiparty_screen div.btn-group {
  78. display: block;
  79. margin: 5px;
  80. opacity: 0.3;
  81. }
  82. div#wifiparty_screen div.btn-group:hover {
  83. opacity: 0.7;
  84. }
  85. div#wifiparty_ssid_part {
  86. background: #5CB85C;
  87. color: #fff;
  88. }
  89. div#wifiparty_ssid_part div.btn-group {
  90. float: left;
  91. position: fixed;
  92. top: 0;
  93. left: 0;
  94. z-index: 999;
  95. opacity: 0.2;
  96. }
  97. div#wifiparty_ssid_part div.btn-group:hover {
  98. opacity: 0.8;
  99. }
  100. span#wifiparty_ssid {
  101. font-size: 70px;
  102. }
  103. div.wifiparty_passphrase {
  104. clear: both;
  105. font-size: 140px;
  106. font-style: italic;
  107. margin: 50px 20px;
  108. word-wrap: break-word;
  109. line-height: 0.9;
  110. display: none;
  111. }
  112. div.wifiparty_passphrase span.passdigit {
  113. color: #428BCA;
  114. }
  115. div.wifiparty_passphrase span.passother {
  116. color: #D9534F;
  117. }
  118. div.wifiparty_passphrase span.passspace {
  119. color: #CCC;
  120. }
  121. ul.nav-tabs {
  122. margin-top: 5px;
  123. }
  124. div.tabs {
  125. padding: 14px 14px 0 10px;
  126. }
  127. ul.nav a {
  128. outline: none;
  129. }
  130. div.deletessid {
  131. text-align: center;
  132. padding: 10px;
  133. }
  134. div.deletessid button {
  135. display: block;
  136. width: 100%;
  137. }
  138. button#newssid {
  139. margin-bottom: 20px;
  140. }