style.css 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Wifi Hotspot app for YunoHost
  2. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. * Contribute at https://github.com/jvaubourg/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: 0 auto;
  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. }