2014-12-26 20:18:03 +01:00
|
|
|
/* Wifi Hotspot app for YunoHost
|
|
|
|
* Copyright (C) 2015 Julien Vaubourg <julien@vaubourg.com>
|
2015-07-22 23:54:56 +02:00
|
|
|
* Contribute at https://github.com/labriqueinternet/hotspot_ynh
|
2014-12-26 20:18:03 +01:00
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2014-11-17 23:44:18 +01:00
|
|
|
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;
|
|
|
|
}
|
2014-11-18 21:26:05 +01:00
|
|
|
|
|
|
|
div#github {
|
|
|
|
margin: -10px 0 20px 20px;
|
|
|
|
background: url(../img/github.png) no-repeat 0 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#github a {
|
|
|
|
margin-left: 17px;
|
|
|
|
}
|
2014-12-26 18:58:58 +01:00
|
|
|
|
|
|
|
div#saveconfirmation {
|
|
|
|
display: none;
|
|
|
|
padding-right: 15px;
|
|
|
|
width: 60%;
|
2015-05-25 02:23:28 +02:00
|
|
|
margin: 15px auto 0;
|
2014-12-26 18:58:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
div#saveconfirmation div#confirm {
|
|
|
|
background-color: #fff;
|
|
|
|
padding: 10px;
|
|
|
|
margin: 15px 0 0 0;
|
|
|
|
border: 1px solid #F5E79E;
|
|
|
|
}
|
2015-01-02 02:24:30 +01:00
|
|
|
|
|
|
|
div#wifiparty_screen {
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
display: none;
|
|
|
|
position: fixed;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
z-index: 998;
|
|
|
|
background-color: #fff;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#wifiparty_screen div.btn-group {
|
|
|
|
display: block;
|
|
|
|
margin: 5px;
|
|
|
|
opacity: 0.3;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#wifiparty_screen div.btn-group:hover {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#wifiparty_ssid_part {
|
|
|
|
background: #5CB85C;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#wifiparty_ssid_part div.btn-group {
|
|
|
|
float: left;
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 999;
|
|
|
|
opacity: 0.2;
|
|
|
|
}
|
|
|
|
|
|
|
|
div#wifiparty_ssid_part div.btn-group:hover {
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
span#wifiparty_ssid {
|
|
|
|
font-size: 70px;
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:54:12 +02:00
|
|
|
div.wifiparty_passphrase {
|
2015-01-02 02:24:30 +01:00
|
|
|
clear: both;
|
|
|
|
font-size: 140px;
|
|
|
|
font-style: italic;
|
|
|
|
margin: 50px 20px;
|
|
|
|
word-wrap: break-word;
|
|
|
|
line-height: 0.9;
|
2015-05-02 16:54:12 +02:00
|
|
|
display: none;
|
2015-01-02 02:24:30 +01:00
|
|
|
}
|
|
|
|
|
2015-05-02 16:54:12 +02:00
|
|
|
div.wifiparty_passphrase span.passdigit {
|
2015-01-02 02:24:30 +01:00
|
|
|
color: #428BCA;
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:54:12 +02:00
|
|
|
div.wifiparty_passphrase span.passother {
|
2015-01-02 02:24:30 +01:00
|
|
|
color: #D9534F;
|
|
|
|
}
|
|
|
|
|
2015-05-02 16:54:12 +02:00
|
|
|
div.wifiparty_passphrase span.passspace {
|
2015-01-02 02:24:30 +01:00
|
|
|
color: #CCC;
|
|
|
|
}
|
2015-04-26 17:18:52 +02:00
|
|
|
|
|
|
|
ul.nav-tabs {
|
|
|
|
margin-top: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.tabs {
|
|
|
|
padding: 14px 14px 0 10px;
|
|
|
|
}
|
|
|
|
|
2015-09-29 18:01:10 +02:00
|
|
|
ul.nav a {
|
2015-04-26 17:18:52 +02:00
|
|
|
outline: none;
|
|
|
|
}
|
2015-05-02 15:59:42 +02:00
|
|
|
|
|
|
|
div.deletessid {
|
|
|
|
text-align: center;
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.deletessid button {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
2015-09-15 22:21:27 +02:00
|
|
|
|
|
|
|
button#newssid {
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|