mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-23 09:04:13 +00:00
improved styles
This commit is contained in:
parent
b34089b8b6
commit
e126331994
1 changed files with 36 additions and 6 deletions
|
@ -1,19 +1,49 @@
|
|||
.content-bar {
|
||||
background-color: #cccccc;
|
||||
background-color: green;
|
||||
float: left;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
width: 20%;
|
||||
height: 100%;
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
}
|
||||
|
||||
.content-nav-box {
|
||||
.content-bar-top {
|
||||
position: absolute;
|
||||
top: 0px; left: 0px; height: 30%; width: 100%;
|
||||
overflow: auto; background-color: yellow;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
height: 30%;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
background-color: yellow;
|
||||
}
|
||||
|
||||
.content-bar-bottom {
|
||||
position: absolute;
|
||||
bottom: 0px;
|
||||
left: 0px;
|
||||
height:70%;
|
||||
width: 100%;
|
||||
overflow: auto;
|
||||
background-color: red;
|
||||
}
|
||||
|
||||
.content-pane {
|
||||
background-color: pink;
|
||||
position: fixed;
|
||||
top: 0px;
|
||||
right: 0px;
|
||||
width: 80%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.content-body {
|
||||
background-color: grey;
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
left: 0px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
hr.method-separator {
|
||||
|
|
Loading…
Reference in a new issue