1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- /* Wifi Hotspot app for YunoHost
- * Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
- * Contribute at https://github.com/jvaubourg/hotspot_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;
- }
- div#saveconfirmation {
- display: none;
- padding-right: 15px;
- width: 60%;
- margin: 0 auto;
- }
- div#saveconfirmation div#confirm {
- background-color: #fff;
- padding: 10px;
- margin: 15px 0 0 0;
- border: 1px solid #F5E79E;
- }
|