mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-01-01 22:40:39 +00:00
205 lines
3.3 KiB
CSS
205 lines
3.3 KiB
CSS
|
|
html, body {
|
|
height: 100% !important;
|
|
}
|
|
|
|
body {
|
|
margin: 0px !important;
|
|
line-height: 1.42857143 !important;
|
|
}
|
|
|
|
a {
|
|
color: #6699ff !important;
|
|
}
|
|
|
|
a:hover {
|
|
color: #6699ff !important;
|
|
}
|
|
|
|
#header {
|
|
background-color: #6699ff;
|
|
height: 32px;
|
|
margin-bottom: -32px;
|
|
box-shadow: 0px 1px 15px 0px #888888;
|
|
width: 100%;
|
|
}
|
|
|
|
#header .title {
|
|
margin: 0 auto;
|
|
color: #ffffff;
|
|
padding: 0px 15px 0px 15px;
|
|
}
|
|
|
|
#header .title img {
|
|
vertical-align: text-bottom;
|
|
}
|
|
|
|
#header .title .text {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
font-family: Arial;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
#header .menu {
|
|
float: right;
|
|
padding: 6px;
|
|
}
|
|
|
|
#header .menu .menu-title {
|
|
color: #ffffff;
|
|
font-family: Arial;
|
|
font-size: 16px;
|
|
}
|
|
|
|
#content {
|
|
min-height: 100%;
|
|
}
|
|
|
|
.container {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
padding: 55px 15px 60px 15px;
|
|
word-wrap: break-word;
|
|
min-width: 970px;
|
|
}
|
|
|
|
.container .pageLogin {
|
|
display: none;
|
|
margin: auto;
|
|
width: 500px;
|
|
padding: 150px 0 0 0;
|
|
}
|
|
|
|
.container .page {
|
|
display: none;
|
|
}
|
|
|
|
.auto-resize-img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
display: block;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
}
|
|
|
|
.center-iframe {
|
|
display: block;
|
|
margin-right: auto;
|
|
margin-left: auto;
|
|
max-width: 640px;
|
|
max-height: 480px;
|
|
}
|
|
|
|
.center-iframe iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#footer {
|
|
background-color: rgb(243, 243, 243);
|
|
padding: 20px 0px 20px 0px;
|
|
margin-top: -55px;
|
|
box-shadow: 0px 2px 15px 1px #888888;
|
|
clear: both;
|
|
position: relative;
|
|
height: 55px;
|
|
}
|
|
|
|
#footer .content {
|
|
margin: 0 auto;
|
|
color: rgb(119,119,119);
|
|
font-family: Arial, sans-serif;
|
|
font-size: 11px;
|
|
font-weight: 600;
|
|
text-align: center;
|
|
}
|
|
|
|
#footer .content a {
|
|
color: rgb(119,119,119);
|
|
text-decoration: none;
|
|
}
|
|
|
|
#footer .content a:hover {
|
|
color: #6699ff;
|
|
}
|
|
|
|
@media (min-width: 768px) {
|
|
#header .title, .container, #footer .content {
|
|
width: 750px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 992px) {
|
|
#header .title, .container, #footer .content {
|
|
width: 970px;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1200px) {
|
|
#header .title, .container, #footer .content {
|
|
width: 1170px;
|
|
}
|
|
}
|
|
|
|
.form-inline .form-group {
|
|
margin-right: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
label {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
.AlertPlaceholder {
|
|
position: fixed;
|
|
width: 800px;
|
|
margin: auto;
|
|
left: 0;
|
|
right: 0;
|
|
top: 45px;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.zone-list-pane {
|
|
float: left;
|
|
width: 24%;
|
|
}
|
|
|
|
.zones {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.zones .zone {
|
|
padding: 4px;
|
|
}
|
|
|
|
.zone-viewer-pane {
|
|
float: right;
|
|
width: 75%;
|
|
display: none;
|
|
}
|
|
|
|
.zone-viewer-pane .resource-record {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.log-list-pane {
|
|
float: left;
|
|
width: 15%;
|
|
}
|
|
|
|
.logs {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.logs .log {
|
|
padding: 2px;
|
|
}
|
|
|
|
.log-viewer-pane {
|
|
float: right;
|
|
width: 84%;
|
|
display: none;
|
|
}
|