style.css 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* PirateBox app for YunoHost
  2. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  3. * Contribute at https://github.com/labriqueinternet/piratebox_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, div#raw_openvpn_panel {
  25. color: #D9534F;
  26. }
  27. li.status-success {
  28. color: #5CB85C;
  29. }
  30. img#status-loading {
  31. display: none;
  32. margin-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. a.btn-danger span {
  48. color: #eee;
  49. }
  50. a.btn-danger:hover span {
  51. color: #fff;
  52. }
  53. a.not-allowed {
  54. cursor: not-allowed;
  55. }
  56. input.allowed {
  57. cursor: default;
  58. }
  59. a.btn-disabled, a.btn-disabled:hover, a.btn-disabled:active {
  60. background-color: #999;
  61. background-image: none;
  62. border-color: #888;
  63. }
  64. a.btn-disabled:hover span {
  65. color: #eee;
  66. }
  67. div#github {
  68. margin: -10px 0 20px 20px;
  69. background: url(../img/github.png) no-repeat 0 4px;
  70. }
  71. div#github a {
  72. margin-left: 17px;
  73. }
  74. div#raw_openvpn_panel {
  75. display: none;
  76. }
  77. textarea#raw_openvpn {
  78. height: 300px;
  79. border: 1px solid #D9534F;
  80. }