wide/static/css/base.css

153 lines
2.0 KiB
CSS
Raw Normal View History

2014-09-02 14:09:01 +04:00
/* start reset & function */
2014-08-29 13:24:08 +04:00
body {
font-size: 13px;
margin: 0;
2014-09-03 13:23:42 +04:00
color: #000;
2014-08-29 13:24:08 +04:00
}
2014-08-18 17:45:43 +04:00
ul {
2014-08-19 13:07:35 +04:00
padding: 0;
margin: 0;
2014-09-03 13:23:42 +04:00
list-style: none;
2014-08-18 17:45:43 +04:00
}
2014-08-29 13:24:08 +04:00
* {
box-sizing: border-box;
}
.fn-left {
float: left;
}
.fn-right {
float: right;
}
2014-08-18 17:45:43 +04:00
.fn-clear:before,
.fn-clear:after {
display: table;
content: "";
}
.fn-clear:after {
clear: both;
}
.fn-none {
2014-08-19 13:07:35 +04:00
display: none;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
/* end reset & function */
2014-09-03 13:23:42 +04:00
/* start tabs */
.tabs {
height: 20px;
overflow: hidden;
width: 100%;
}
.tabs > div {
background-color: #D1D1D1;
float: left;
border-right: 1px solid #9B9B9B;
padding: 2px 5px;
color: #333;
}
.tabs > div.current {
background-color: #F7F7F7;
}
.tabs .ico-close {
cursor: pointer;
}
/* end tabs */
2014-09-02 14:09:01 +04:00
/* start framework */
.menu {
2014-09-03 13:23:42 +04:00
background-color: #F0F0F0;
border-bottom: 1px solid #A5A5A5;
height: 25px;
2014-09-02 14:09:01 +04:00
}
2014-08-18 17:45:43 +04:00
.content {
2014-08-19 13:07:35 +04:00
position: relative;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
.side {
2014-08-19 13:07:35 +04:00
width: 20%;
2014-09-02 14:09:01 +04:00
position: absolute;
2014-09-03 13:23:42 +04:00
border-right: 1px solid #9B9B9B;
2014-09-02 14:09:01 +04:00
height: 100%;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
.ztree {
2014-08-19 13:07:35 +04:00
position: absolute;
2014-09-02 14:09:01 +04:00
overflow: auto;
width: 100%;
padding: 0;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
.main {
width: 80%;
position: absolute;
left: 20%;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
.footer {
2014-09-03 13:23:42 +04:00
border-top: 1px solid #919191;
background-color: #F0F0F0;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
/* end framework */
2014-09-03 13:23:42 +04:00
/* start side */
.menu-r {
position: absolute;
border: 1px solid #5F5F5F;
background-color: #F8F8F8;
width: 340px;
z-index: 2;
}
2014-09-02 14:09:01 +04:00
2014-09-03 13:23:42 +04:00
.menu-r li {
padding: 0 5px;
line-height: 25px;
cursor: pointer;
}
2014-09-02 14:09:01 +04:00
2014-09-03 13:23:42 +04:00
.menu-r li:hover {
background-color: #3875D7;
2014-09-02 14:09:01 +04:00
color: #FFF;
2014-08-29 13:24:08 +04:00
}
2014-09-03 13:23:42 +04:00
/* end side */
2014-08-29 13:24:08 +04:00
2014-09-03 13:23:42 +04:00
/* start editor */
.edit-panel {
background-color: #D7D7D7;
width: 100%
2014-09-02 14:09:01 +04:00
}
2014-09-03 13:23:42 +04:00
/* end editor */
/* start output */
.output .tabs {
background-color: #CAD3E3;
border-top: 1px solid #8E97A7;
border-bottom: 1px solid #8E97A7;
2014-08-29 13:56:26 +04:00
}
2014-09-03 13:23:42 +04:00
.output .tabs > div {
background-color: #B5BDCC;
border-left-color: #9096A2;
2014-08-29 13:24:08 +04:00
}
2014-09-03 13:23:42 +04:00
.output .tabs > div.current {
background-color: #8B99B3;
color: #FFF;
2014-08-29 13:24:08 +04:00
}
2014-09-03 13:23:42 +04:00
#output {
width: 100%;
height: 130px;
color: #555555;
2014-08-29 13:24:08 +04:00
}
2014-09-03 13:23:42 +04:00
/* end output */