707 lines
10 KiB
CSS
707 lines
10 KiB
CSS
body {
|
|
background: #0a0a0a;
|
|
color: #bfbfbf;
|
|
font-family: sans-serif;
|
|
margin: 0
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.7rem;
|
|
margin-top: 1rem;
|
|
background: #1a1a1a;
|
|
color: #bfbfbb;
|
|
padding: 0.2em 1em;
|
|
border-radius: 3px;
|
|
border-left: solid #8B0000 6px;
|
|
font-weight: 100;
|
|
border-right: solid #8B0000 6px
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1.1rem;
|
|
margin-top: 1rem;
|
|
background: #1a1a1a;
|
|
color: #bfbfbb;
|
|
padding: 0.4em 1.8em;
|
|
border-radius: 3px;
|
|
border-left: solid #8B0000 6px;
|
|
font-weight: 100;
|
|
border-right: solid #8B0000 6px
|
|
}
|
|
|
|
h3 {
|
|
font-size: 1rem;
|
|
margin-top: 1rem;
|
|
background: #1a1a1a;
|
|
color: #bfbfbb;
|
|
padding: 0.4em 1.8em;
|
|
border-radius: 3px;
|
|
border-left: solid #8B0000 6px;
|
|
font-weight: 100;
|
|
border-right: solid #8B0000 6px
|
|
}
|
|
|
|
table {
|
|
border-collapse: collapse
|
|
}
|
|
|
|
label {
|
|
line-height: 38px
|
|
}
|
|
|
|
p {
|
|
margin: 0.5em 0
|
|
}
|
|
|
|
.left {
|
|
float: left
|
|
}
|
|
|
|
.right {
|
|
float: right
|
|
}
|
|
|
|
.bold {
|
|
font-weight: bold
|
|
}
|
|
|
|
.red {
|
|
color: #e00606
|
|
}
|
|
|
|
.green {
|
|
color: #ff00ff
|
|
}
|
|
|
|
.clear {
|
|
clear: both
|
|
}
|
|
|
|
.centered {
|
|
text-align: center
|
|
}
|
|
|
|
.select {
|
|
width: 98px !important;
|
|
padding: 0 !important
|
|
}
|
|
|
|
.selected {
|
|
background: #0ba8cf
|
|
}
|
|
|
|
.labelFix {
|
|
line-height: 44px
|
|
}
|
|
|
|
.clickable {
|
|
cursor: pointer
|
|
}
|
|
|
|
.settingName {
|
|
text-transform: uppercase;
|
|
font-weight: bold;
|
|
text-decoration: underline
|
|
}
|
|
|
|
.status {
|
|
width: 150px;
|
|
padding: 0.5em 1em;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
border-radius: 5px;
|
|
position: fixed;
|
|
top: 20px;
|
|
z-index: 200;
|
|
text-align: center;
|
|
text-transform: capitalize
|
|
}
|
|
|
|
#status {
|
|
width: 150px;
|
|
padding: 0.5em 1em;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
border-radius: 5px;
|
|
position: fixed;
|
|
top: 40px;
|
|
left: 85%;
|
|
z-index: 200;
|
|
text-align: center;
|
|
text-transform: capitalize
|
|
}
|
|
|
|
#closeError {
|
|
float: right;
|
|
color: #fff;
|
|
padding: 0px 10px;
|
|
cursor: pointer
|
|
}
|
|
|
|
footer {
|
|
font-size: .95em;
|
|
text-align: center;
|
|
margin-top: 3em;
|
|
margin-bottom: 3em
|
|
}
|
|
|
|
.checkBoxContainer {
|
|
display: block;
|
|
position: relative;
|
|
padding-left: 35px;
|
|
margin-bottom: 12px;
|
|
cursor: pointer;
|
|
font-size: 22px;
|
|
-webkit-user-select: none;
|
|
-moz-user-select: none;
|
|
-ms-user-select: none;
|
|
user-select: none;
|
|
height: 32px
|
|
}
|
|
|
|
.checkBoxContainer input {
|
|
position: absolute;
|
|
opacity: 0;
|
|
cursor: pointer
|
|
}
|
|
|
|
.checkmark {
|
|
position: absolute;
|
|
top: 8px;
|
|
left: 0;
|
|
height: 28px;
|
|
width: 28px;
|
|
background-color: #2F3136;
|
|
border-radius: 4px
|
|
}
|
|
|
|
.checkmark:after {
|
|
content: "";
|
|
position: absolute;
|
|
display: none
|
|
}
|
|
|
|
.checkBoxContainer input:checked~.checkmark:after {
|
|
display: block
|
|
}
|
|
|
|
.checkBoxContainer .checkmark:after {
|
|
left: 10px;
|
|
top: 7px;
|
|
width: 4px;
|
|
height: 10px;
|
|
border: solid white;
|
|
border-width: 0 3px 3px 0;
|
|
-webkit-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
transform: rotate(45deg)
|
|
}
|
|
|
|
.hide {
|
|
display: none
|
|
}
|
|
|
|
.show {
|
|
display: block !important;
|
|
animation-name: fadeIn;
|
|
animation-duration: 1s
|
|
}
|
|
|
|
@keyframes fadeIn {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
hr {
|
|
background: #3e4146
|
|
}
|
|
|
|
a {
|
|
color: #0ba8cf;
|
|
text-decoration: none
|
|
}
|
|
|
|
a:hover {
|
|
color: #0ba8cf
|
|
}
|
|
|
|
li {
|
|
margin: 4px 0
|
|
}
|
|
|
|
.meter_background {
|
|
background: #42464D;
|
|
width: 100%;
|
|
word-break: normal;
|
|
min-width: 100px
|
|
}
|
|
|
|
.meter_forground {
|
|
color: #fff;
|
|
padding: 4px 0
|
|
}
|
|
|
|
.meter_green {
|
|
background: #43B581
|
|
}
|
|
|
|
.meter_orange {
|
|
background: #FAA61A
|
|
}
|
|
|
|
.meter_red {
|
|
background: #F04747
|
|
}
|
|
|
|
.meter_value {
|
|
padding-left: 8px
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
min-width: 400px;
|
|
margin-bottom: 2em
|
|
}
|
|
|
|
td {
|
|
word-break: break-all
|
|
}
|
|
|
|
th {
|
|
word-break: break-word
|
|
}
|
|
|
|
th,
|
|
td {
|
|
padding: 10px 6px;
|
|
text-align: left;
|
|
border-bottom: 1px solid #5d5d5d
|
|
}
|
|
|
|
@media screen and (max-width: 820px) {
|
|
|
|
#apTable .id,
|
|
#apTable .enc,
|
|
#apTable .mac,
|
|
#apTable .vendor,
|
|
#apTable .name,
|
|
#stTable .id,
|
|
#stTable .pkts,
|
|
#stTable .lastseen,
|
|
#stTable .mac,
|
|
#nTable .id,
|
|
#nTable .vendor,
|
|
#nTable .ap,
|
|
#nTable .mac,
|
|
#ssidTable .id {
|
|
display: none
|
|
}
|
|
|
|
.meter_background {
|
|
min-width: 45px
|
|
}
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding-top: 50px
|
|
}
|
|
|
|
nav.tabs {
|
|
background: #345994;
|
|
width: 100%;
|
|
padding: 0.5em;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 100
|
|
}
|
|
|
|
.menu {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center
|
|
}
|
|
|
|
.menu li {
|
|
margin: 0 20px
|
|
}
|
|
|
|
.menu a {
|
|
color: rgb(0, 0, 0);
|
|
text-decoration: none;
|
|
padding: 0.5em 1em;
|
|
border-radius: 5px
|
|
}
|
|
|
|
.menu a:hover {
|
|
background: #0ba8cf
|
|
}
|
|
|
|
.menu a.active {
|
|
background: #0ba8cf
|
|
}
|
|
|
|
nav a {
|
|
color: inherit;
|
|
padding: 1em
|
|
}
|
|
|
|
nav.tabs {
|
|
background: #0666ff;
|
|
width: 100%;
|
|
padding: 0.5em;
|
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
|
border-radius: 10px;
|
|
position: fixed;
|
|
top: 0;
|
|
z-index: 100
|
|
}
|
|
|
|
ul.menu {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
background: #1a1a1a;
|
|
border-radius: 10px;
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
z-index: 99;
|
|
overflow: hidden
|
|
}
|
|
|
|
ul.menu li {
|
|
margin: 10px 20px 10px 0;
|
|
display: inline-block
|
|
}
|
|
|
|
ul.menu a {
|
|
color: white;
|
|
text-decoration: none;
|
|
padding: 0.5em 1em;
|
|
border-radius: 5px
|
|
}
|
|
|
|
ul.menu a:hover {
|
|
background: #c20000
|
|
}
|
|
|
|
ul.menu a.active {
|
|
background: #0ba8cf
|
|
}
|
|
|
|
.upload-script,
|
|
.button,
|
|
button,
|
|
input[type="submit"],
|
|
input[type="reset"],
|
|
input[type="button"] {
|
|
display: inline-block;
|
|
height: 38px;
|
|
padding: 0 20px;
|
|
color: #fff;
|
|
text-align: center;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
line-height: 38px;
|
|
letter-spacing: .1rem;
|
|
text-transform: uppercase;
|
|
text-decoration: none;
|
|
white-space: nowrap;
|
|
background: #1a1a1a;
|
|
border-radius: 4px;
|
|
border: none;
|
|
cursor: pointer;
|
|
box-sizing: border-box
|
|
}
|
|
|
|
button:hover,
|
|
input[type="submit"]:hover,
|
|
input[type="reset"]:hover,
|
|
input[type="button"]:hover {
|
|
background: #42444a
|
|
}
|
|
|
|
button:active,
|
|
input[type="submit"]:active,
|
|
input[type="reset"]:active,
|
|
input[type="button"]:active {
|
|
transform: scale(.93)
|
|
}
|
|
|
|
button:disabled:hover,
|
|
input[type="submit"]:disabled:hover,
|
|
input[type="reset"]:disabled:hover,
|
|
input[type="button"]:disabled:hover {
|
|
background: white;
|
|
cursor: not-allowed;
|
|
opacity: 0.40;
|
|
filter: alpha(opacity=40);
|
|
transform: scale(1)
|
|
}
|
|
|
|
button::-moz-focus-inner {
|
|
border: 0
|
|
}
|
|
|
|
input[type="email"],
|
|
input[type="number"],
|
|
input[type="search"],
|
|
input[type="text"],
|
|
input[type="tel"],
|
|
input[type="url"],
|
|
input[type="password"],
|
|
textarea,
|
|
select {
|
|
height: 38px;
|
|
padding: 6px 10px;
|
|
background-color: #1a1a1a;
|
|
border-radius: 4px;
|
|
box-shadow: none;
|
|
box-sizing: border-box;
|
|
color: #d4d4d4;
|
|
border: none;
|
|
width: 5em
|
|
}
|
|
|
|
input[type="text"] {
|
|
width: 10em
|
|
}
|
|
|
|
.setting {
|
|
width: 100% !important;
|
|
max-width: 284px !important
|
|
}
|
|
|
|
input[type="file"] {
|
|
display: block
|
|
}
|
|
|
|
.container {
|
|
width: 100%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 1140px
|
|
}
|
|
|
|
.row {
|
|
position: relative;
|
|
width: 100%
|
|
}
|
|
|
|
.row [class^="col"] {
|
|
float: left;
|
|
margin: 0.25rem 2%;
|
|
min-height: 0.125rem
|
|
}
|
|
|
|
.col-1,
|
|
.col-2,
|
|
.col-3,
|
|
.col-4,
|
|
.col-5,
|
|
.col-6,
|
|
.col-7,
|
|
.col-8,
|
|
.col-9,
|
|
.col-10,
|
|
.col-11,
|
|
.col-12 {
|
|
width: 96%
|
|
}
|
|
|
|
.row::after {
|
|
content: "";
|
|
display: table;
|
|
clear: both
|
|
}
|
|
|
|
.hidden-sm {
|
|
display: none
|
|
}
|
|
|
|
@media only screen and (min-width: 24em) {
|
|
.col-1 {
|
|
width: 4.33%
|
|
}
|
|
|
|
.col-2 {
|
|
width: 12.66%
|
|
}
|
|
|
|
.col-3 {
|
|
width: 21%
|
|
}
|
|
|
|
.col-4 {
|
|
width: 29.33%
|
|
}
|
|
|
|
.col-5 {
|
|
width: 37.66%
|
|
}
|
|
|
|
.col-6 {
|
|
width: 46%
|
|
}
|
|
|
|
.col-7 {
|
|
width: 54.33%
|
|
}
|
|
|
|
.col-8 {
|
|
width: 62.66%
|
|
}
|
|
|
|
.col-9 {
|
|
width: 71%
|
|
}
|
|
|
|
.col-10 {
|
|
width: 79.33%
|
|
}
|
|
|
|
.col-11 {
|
|
width: 87.66%
|
|
}
|
|
|
|
.col-12 {
|
|
width: 96%
|
|
}
|
|
|
|
.hidden-sm {
|
|
display: block
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 768px) {
|
|
|
|
body {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
ul.menu {
|
|
flex-wrap: nowrap;
|
|
overflow-x: auto;
|
|
justify-content: flex-start;
|
|
padding: 5px;
|
|
height: auto;
|
|
max-height: 50px;
|
|
}
|
|
|
|
ul.menu li {
|
|
margin: 0 10px;
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
ul.menu a {
|
|
padding: 0.3em 0.5em;
|
|
font-size: 12px;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
#status {
|
|
width: auto;
|
|
max-width: 90%;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
top: 55px;
|
|
padding: 0.5em;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#fileList th:nth-child(2), #fileList td:nth-child(2) {
|
|
display: none;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
word-break: break-all;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 10px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.5rem;
|
|
padding: 0.2em 0.5em;
|
|
}
|
|
|
|
h2 {
|
|
font-size: 1rem;
|
|
padding: 0.4em 1em;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 0.9rem;
|
|
padding: 0.4em 1em;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
}
|
|
|
|
input[type="text"], input[type="file"], input[type="submit"] {
|
|
width: 100% !important;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
button, input[type="submit"] {
|
|
width: 100%;
|
|
margin: 5px 0;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 1em;
|
|
margin-bottom: 1em;
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
|
|
body {
|
|
padding-top: 60px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 480px) {
|
|
|
|
ul.menu a {
|
|
font-size: 11px;
|
|
padding: 0.2em 0.3em;
|
|
}
|
|
|
|
ul.menu {
|
|
max-height: 40px;
|
|
}
|
|
|
|
#status {
|
|
font-size: 12px;
|
|
top: 45px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.3rem;
|
|
}
|
|
|
|
.container {
|
|
padding: 0 5px;
|
|
}
|
|
|
|
th, td {
|
|
padding: 8px 4px;
|
|
font-size: 14px;
|
|
}
|
|
}
|