44 lines
601 B
PHP
44 lines
601 B
PHP
![]() |
/** CSS **/
|
||
|
|
||
|
/*
|
||
|
* CSS wide
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
|
||
|
.wrapper{
|
||
|
/* main wrapper */
|
||
|
width:99%;
|
||
|
}
|
||
|
|
||
|
.wrapper .nav{
|
||
|
/* top header nav wrapper */
|
||
|
width:99%;
|
||
|
}
|
||
|
|
||
|
.wrapper .nav li:first-child {
|
||
|
/* breathing space for tabs */
|
||
|
margin-left: 35px;
|
||
|
}
|
||
|
|
||
|
.wrapper table {
|
||
|
/* tables in wrapper, eg page management lists */
|
||
|
width:99%;
|
||
|
}
|
||
|
|
||
|
#maincontent{
|
||
|
/* wrapper for admin inputs */
|
||
|
width:80%;
|
||
|
}
|
||
|
|
||
|
textarea, form input.title{
|
||
|
/* resize backend textareas */
|
||
|
/* outline backend administrative input fields for emphasis */
|
||
|
width:99% ;
|
||
|
}
|
||
|
|
||
|
form.manyinputs textarea{
|
||
|
/* resize backend textareas for components */
|
||
|
width:100% ;
|
||
|
}
|