12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /* Tor Client app for YunoHost
- * Copyright (C) 2015 Émile Morel <emile@bleuchtang.fr>
- * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
- * Contribute at https://github.com/labriqueinternet/torclient_ynh
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- li.status-info {
- color: #5BC0DE;
- }
- li.status-warning {
- color: #D9534F;
- }
- li.status-danger {
- color: #D9534F;
- }
- li.status-success {
- color: #5CB85C;
- }
- img#status-loading {
- display: none;
- padding-right: 5px;
- }
- img#save-loading {
- display: none;
- margin-left: 5px;
- }
- div#status {
- display: none;
- margin-top: 10px;
- }
- div#status ul {
- list-style-type: none;
- padding: 0;
- margin: 0;
- }
- div#github {
- margin: -10px 0 20px 20px;
- background: url(../img/github.png) no-repeat 0 4px;
- }
- div#github a {
- margin-left: 17px;
- }
|