wide/static/css/base.css

134 lines
1.5 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-08-18 17:45:43 +04:00
ul {
2014-08-19 13:07:35 +04:00
padding: 0;
margin: 0;
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 */
/* start framework */
.menu {
border-bottom: 1px solid #DDD;
}
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;
border-right: 1px solid #DDD;
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
}
.edit-panel {
2014-09-02 14:09:01 +04:00
border-bottom: 1px solid #ddd;
width: 100%
2014-08-19 13:07:35 +04:00
}
2014-09-02 14:09:01 +04:00
.footer {
border-top: 1px solid #DDD;
2014-08-18 17:45:43 +04:00
}
2014-09-02 14:09:01 +04:00
/* end framework */
2014-09-02 18:57:30 +04:00
/* start output */
#output {
width: 100%;
}
/* end output */
2014-09-02 14:09:01 +04:00
2014-08-18 17:45:43 +04:00
2014-09-02 14:09:01 +04:00
#dirRMenu, #fileRMenu {
position: absolute;
border: 1px solid #DDD;
background-color: #444;
color: #FFF;
2014-08-29 13:24:08 +04:00
}
2014-09-02 14:09:01 +04:00
#dirRMenu li, #fileRMenu li {
padding: 5px 10px;
cursor: pointer;
font-size: 12px;
}
2014-08-29 13:24:08 +04:00
/* start tabs */
2014-08-29 13:56:26 +04:00
.tabs {
height: 20px;
overflow: hidden;
width: 97%;
}
2014-08-29 13:24:08 +04:00
.tabs > div {
background-color: #FFF;
float: left;
2014-08-29 13:56:26 +04:00
border-left: 1px solid #DDD;
padding: 2px 5px;
2014-08-29 13:24:08 +04:00
}
.tabs > div.current {
background-color: #EEEEEE;
}
.tabs .ico-close {
cursor: pointer;
}
/* end tabs */