83 lines
1.3 KiB
CSS
83 lines
1.3 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;
|
||
|
|
}
|
||
|
|
|
||
|
|
.VerticalInputForm {
|
||
|
|
display: inline-block;
|
||
|
|
}
|
||
|
|
|
||
|
|
.TextInput {
|
||
|
|
height: 14px;
|
||
|
|
font-size: 12px;
|
||
|
|
}
|
||
|
|
|
||
|
|
.VerticalInputForm input {
|
||
|
|
display: block;
|
||
|
|
margin-bottom: 8px;
|
||
|
|
}
|