style.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* Tor Client app for YunoHost
  2. * Copyright (C) 2015 Émile Morel <emile@bleuchtang.fr>
  3. * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
  4. * Contribute at https://github.com/labriqueinternet/torclient_ynh
  5. *
  6. * This program is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU Affero General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU Affero General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU Affero General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. li.status-info {
  20. color: #5BC0DE;
  21. }
  22. li.status-warning {
  23. color: #D9534F;
  24. }
  25. li.status-danger {
  26. color: #D9534F;
  27. }
  28. li.status-success {
  29. color: #5CB85C;
  30. }
  31. img#status-loading {
  32. display: none;
  33. padding-right: 5px;
  34. }
  35. img#save-loading {
  36. display: none;
  37. margin-left: 5px;
  38. }
  39. div#status {
  40. display: none;
  41. margin-top: 10px;
  42. }
  43. div#status ul {
  44. list-style-type: none;
  45. padding: 0;
  46. margin: 0;
  47. }
  48. div#github {
  49. margin: -10px 0 20px 20px;
  50. background: url(../img/github.png) no-repeat 0 4px;
  51. }
  52. div#github a {
  53. margin-left: 17px;
  54. }