mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
106 lines
No EOL
1.7 KiB
CSS
106 lines
No EOL
1.7 KiB
CSS
|
|
body {
|
|
font-family: sans-serif, "Times New Roman", Georgia, Serif;
|
|
font-size: 80%;
|
|
margin: 0px;
|
|
}
|
|
|
|
input[type=text] {
|
|
-webkit-transition: all 0.30s ease-in-out;
|
|
-moz-transition: all 0.30s ease-in-out;
|
|
-ms-transition: all 0.30s ease-in-out;
|
|
-o-transition: all 0.30s ease-in-out;
|
|
outline: none;
|
|
padding: 3px 0px 3px 3px;
|
|
margin: 5px 1px 3px 0px;
|
|
border: 1px solid #DDDDDD;
|
|
}
|
|
|
|
input[type=text]:focus {
|
|
box-shadow: 0 0 5px rgba(81, 203, 238, 1);
|
|
padding: 3px 0px 3px 3px;
|
|
margin: 5px 1px 3px 0px;
|
|
border: 1px solid rgba(81, 203, 238, 1);
|
|
}
|
|
|
|
#menubar {
|
|
font-size: 0.75em;
|
|
width: 100%;
|
|
padding: 2px;
|
|
height: 1em;
|
|
background-color: #DDD;
|
|
}
|
|
|
|
#menubar div {
|
|
height: 100%;
|
|
float: left;
|
|
padding-left: 10px;
|
|
padding-right: 10px;
|
|
cursor: pointer;
|
|
-moz-border-radius: 5px;
|
|
border-radius: 5px;
|
|
-webkit-transition: all 0.30s ease-in-out;
|
|
-moz-transition: all 0.30s ease-in-out;
|
|
-ms-transition: all 0.30s ease-in-out;
|
|
-o-transition: all 0.30s ease-in-out;
|
|
}
|
|
|
|
#menubar div:hover {
|
|
background-color: #AAA;
|
|
}
|
|
|
|
#info {
|
|
padding: 10px;
|
|
font-family: Tahoma, sans-serif;
|
|
font-size: 0.75em;
|
|
color: #F33;
|
|
}
|
|
|
|
#mainbody {
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
}
|
|
|
|
#pagetitle {
|
|
font-size: 1.5em;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#editor_table {
|
|
width: 100%;
|
|
}
|
|
|
|
#editor_col {
|
|
width: 80%;
|
|
}
|
|
|
|
#editor {
|
|
float: left;
|
|
position: relative !important;
|
|
border: 1px solid lightgray;
|
|
margin: auto;
|
|
height: 500px;
|
|
width: 100%;
|
|
}
|
|
|
|
#params_col {
|
|
padding-top: 15px;
|
|
padding-left: 15px;
|
|
}
|
|
|
|
#tableParams td:first-child {
|
|
width: 10px;
|
|
}
|
|
|
|
#tableParams input {
|
|
width: 100px;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.error {
|
|
padding: 10px;
|
|
font-family: Tahoma, sans-serif;
|
|
font-size: 1em;
|
|
font-weight: bold;
|
|
color: #F33;
|
|
} |