You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
246 lines
3.6 KiB
CSS
246 lines
3.6 KiB
CSS
@font-face {
|
|
font-family: 'Ubuntu Mono Bold';
|
|
src: url('fonts/UbuntuMono-B.ttf');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-Light.ttf');
|
|
font-weight: 300;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-LightItalic.ttf');
|
|
font-weight: 300;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-Regular.ttf');
|
|
font-weight: 400;
|
|
}
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-Italic.ttf');
|
|
font-weight: 400;
|
|
font-style: italic;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-Bold.ttf');
|
|
font-weight: 600;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('fonts/OpenSans-BoldItalic.ttf');
|
|
font-weight: 600;
|
|
font-style: italic;
|
|
}
|
|
|
|
|
|
body {
|
|
font-family: Open Sans;
|
|
font-size: 12pt;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Ubuntu Mono Bold', monospace;
|
|
}
|
|
|
|
a {
|
|
color: #000;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
a:hover {
|
|
color: #FF0099;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
|
|
div.header, select, button, input {
|
|
font-family: 'Ubuntu Mono Bold', monospace;
|
|
}
|
|
|
|
|
|
div.header {
|
|
padding: 10px;
|
|
font-size:1em;
|
|
text-align:center;
|
|
}
|
|
|
|
div.header-center {
|
|
display: inline-block;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
|
|
#split {
|
|
position: absolute;
|
|
left: 0; right: 0;
|
|
top: 0; bottom: 32px;
|
|
}
|
|
|
|
#editor {
|
|
border-right: 2px dotted #FF0099;
|
|
}
|
|
|
|
#editor textarea {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
|
|
#preview {}
|
|
|
|
#preview .iframe {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#preview .iframe iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
border: none;
|
|
}
|
|
|
|
#previewform {
|
|
display: inline;
|
|
}
|
|
|
|
.label {
|
|
/*text-transform: uppercase;*/
|
|
}
|
|
|
|
#editortext {
|
|
position: absolute;
|
|
top: 32px;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
}
|
|
|
|
#openmenucontext {
|
|
position: relative;
|
|
display: inline;
|
|
z-index: 10000;
|
|
}
|
|
|
|
#openmenu {
|
|
padding: 10px;
|
|
position: absolute;
|
|
left: 0; top: 32px;
|
|
background: #FFF;
|
|
width: 360px;
|
|
display: none;
|
|
border: 2px solid #FF0099;
|
|
}
|
|
|
|
#footer {
|
|
position: absolute;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
text-align: center;
|
|
font-size: smaller;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
/* ********************************* */
|
|
/* aa_frames.js: Simple css "frames" */
|
|
/* ********************************* */
|
|
|
|
.frame {
|
|
position: absolute;
|
|
left: 0; right: 0;
|
|
top: 0; bottom: 0;
|
|
}
|
|
|
|
.left {
|
|
position: absolute;
|
|
left: 0; right: 50%;
|
|
top: 0; bottom: 0;
|
|
}
|
|
|
|
.right {
|
|
position: absolute;
|
|
left: 50%; right: 0;
|
|
top: 0; bottom: 0;
|
|
}
|
|
|
|
.top {
|
|
position: absolute;
|
|
left: 0; right: 0;
|
|
top: 0; bottom: 50%;
|
|
}
|
|
|
|
.bottom {
|
|
position: absolute;
|
|
left: 0; right: 0;
|
|
top: 50%; bottom: 0;
|
|
}
|
|
|
|
.hdiv {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 0; bottom: 0;
|
|
z-index: 100;
|
|
}
|
|
|
|
.hdiv .divcontents {
|
|
position: absolute;
|
|
left: -15px;
|
|
width: 30px;
|
|
top: 10%; bottom: 10%;
|
|
cursor: move;
|
|
}
|
|
|
|
.vdiv {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 0; right: 0;
|
|
background: gray;
|
|
cursor: move;
|
|
z-index: 100;
|
|
}
|
|
|
|
.vdiv .divcontents {
|
|
position: absolute;
|
|
top: -15px;
|
|
height: 30px;
|
|
left: 0; right: 0;
|
|
cursor: move;
|
|
}
|
|
|
|
img.logo{
|
|
position: fixed;
|
|
width:80px;
|
|
right:15px;
|
|
bottom:5px;
|
|
}
|
|
|
|
input, select, button{
|
|
background: #FFF;
|
|
border: 2px solid #FF0099;
|
|
}
|
|
|
|
div.dz-error-message span{
|
|
border-bottom: 2px dotted #FF0099!important;
|
|
}
|
|
|
|
div.dz-details{
|
|
font-size: 0.8em;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
div.ace_print-margin{
|
|
visibility:hidden!important;
|
|
} |