199 lines
2.8 KiB
CSS
199 lines
2.8 KiB
CSS
body {
|
|
width: 1200px;
|
|
margin: auto;
|
|
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#Logo {
|
|
font-size: 20px;
|
|
}
|
|
|
|
#Header {
|
|
display: block;
|
|
margin-bottom: 16px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#Header-Left {
|
|
float: left;
|
|
}
|
|
|
|
#Header-Right {
|
|
float: right;
|
|
}
|
|
|
|
#PageContent {
|
|
display: block;
|
|
width: 900px;
|
|
min-height: 600px;
|
|
padding: 12px;
|
|
box-sizing: border-box;
|
|
background-color: #e5f1fd;
|
|
border-left: gray 2px solid;
|
|
border-right: gray 2px solid;
|
|
margin: auto;
|
|
}
|
|
|
|
.CenteredFocusHeader {
|
|
width: 400px;
|
|
margin: auto;
|
|
background-color: #4682b4;
|
|
color: white;
|
|
padding: 4px;
|
|
box-sizing: border-box;
|
|
font-size: 16px;
|
|
}
|
|
|
|
.CenteredFocusHeader h1,
|
|
.CenteredFocusHeader h2,
|
|
.CenteredFocusHeader h3,
|
|
.CenteredFocusHeader h4,
|
|
.CenteredFocusHeader h5,
|
|
.CenteredFocusHeader h6 {
|
|
margin: 0;
|
|
}
|
|
|
|
.CenteredFocusContent {
|
|
width: 400px;
|
|
background-color: white;
|
|
box-sizing: border-box;
|
|
border: 2px solid #4682b4;
|
|
margin: auto;
|
|
|
|
padding-top: 12px;
|
|
padding-bottom: 12px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
}
|
|
|
|
.InsetContentBox {
|
|
border: 1px inset;
|
|
min-height: 200px;
|
|
background-color: white;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.ContentBox {
|
|
border: 2px solid #4682b4;
|
|
min-height: 200px;
|
|
background-color: white;
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
vertical-align: middle;
|
|
padding: 8px;
|
|
}
|
|
|
|
#DomainOptions {
|
|
text-align: center;
|
|
float: right;
|
|
}
|
|
|
|
#DomainSelection {
|
|
overflow: scroll;
|
|
zoom: 1;
|
|
}
|
|
|
|
#DomainSelection li:hover {
|
|
background-color: #2e69cb;
|
|
color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#ConfigureDNSTable {
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#ConfigureDNSTable table {
|
|
width: 400px;
|
|
}
|
|
|
|
/* Tables */
|
|
table, th, td {
|
|
border: 1px solid black;
|
|
border-collapse: collapse;
|
|
}
|
|
|
|
th {
|
|
text-align: center;
|
|
background-color: #4682b4;
|
|
color: white;
|
|
}
|
|
|
|
tr {
|
|
text-align: center;
|
|
background-color: #fff7e7;
|
|
}
|
|
|
|
#RequestErrors {
|
|
color: red;
|
|
}
|
|
|
|
#RequestErrors li {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.SelectedListItem {
|
|
background-color: #2e69cb;
|
|
color: white;
|
|
}
|
|
|
|
ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
li {
|
|
list-style: none;
|
|
padding: 8px;
|
|
}
|
|
|
|
.MutedText {
|
|
color: #afafaf;
|
|
}
|
|
|
|
.TitleText {
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.Hidden {
|
|
display: none;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
a:hover {
|
|
color: #800000;
|
|
}
|
|
|
|
a {
|
|
color: #0000ee;
|
|
}
|
|
|
|
.DefaultButton {
|
|
background-color: #f5cd2f;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.VerticalInputForm {
|
|
display: inline-block;
|
|
}
|
|
|
|
.TextInput {
|
|
height: 14px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.VerticalInputForm input {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
} |