108 lines
1.9 KiB
CSS
108 lines
1.9 KiB
CSS
/* VPN Client app for YunoHost
|
|
* Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
|
|
* Contribute at https://github.com/labriqueinternet/vpnclient_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, div#raw_openvpn_panel {
|
|
color: #D9534F;
|
|
}
|
|
|
|
li.status-success {
|
|
color: #5CB85C;
|
|
}
|
|
|
|
img#status-loading {
|
|
display: none;
|
|
margin-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;
|
|
}
|
|
|
|
a.btn-danger span {
|
|
color: #eee;
|
|
}
|
|
|
|
a.btn-danger:hover span {
|
|
color: #fff;
|
|
}
|
|
|
|
a.not-allowed {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
input.allowed {
|
|
cursor: default;
|
|
}
|
|
|
|
a.btn-disabled, a.btn-disabled:hover, a.btn-disabled:active {
|
|
background-color: #999;
|
|
background-image: none;
|
|
border-color: #888;
|
|
}
|
|
|
|
a.btn-disabled:hover span {
|
|
color: #eee;
|
|
}
|
|
|
|
div#github {
|
|
margin: -10px 0 20px 20px;
|
|
background: url(../img/github.png) no-repeat 0 4px;
|
|
}
|
|
|
|
div#github a {
|
|
margin-left: 17px;
|
|
}
|
|
|
|
div#raw_openvpn_panel {
|
|
display: none;
|
|
}
|
|
|
|
textarea#raw_openvpn {
|
|
height: 300px;
|
|
border: 1px solid #D9534F;
|
|
}
|
|
|
|
ul.nav {
|
|
margin-top: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
ul.nav a {
|
|
outline: none;
|
|
}
|