1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- .split {
- position: fixed;
- z-index: 1;
- top: 0;
- overflow-x: hidden;
- height: 100%;
- }
- main > div {
- display: flex;
- flex-direction: row;
- height: 100%;
- }
- article:focus {
- background-color: silver;
- }
- .right {
- display: flex;
- overflow-x: hidden;
- border-left: 1px solid black;
- flex-direction: column;
- flex-wrap: wrap;
- }
- .left {
- display: flex;
- flex-direction: column;
- flex-basis: 75%;
- overflow-y: auto;
- }
- /*.sep {
- width: 1%;
- float: left;
- position: fixed;
- border-right: 1px solid black;
- border-left: 1px solid black;
- }*/
- body { overflow-x: hidden; }
- h1 { margin-top: 0; }
- .kui-header {
- position: fixed;
- top: 0;
- left: 0;
- right: 0;
- height: 12%;
- }
- .kui-software-key {
- position: fixed;
- bottom: 0;
- right: 0;
- left: 0;
- height: 10%;
- }
- main {
- position: fixed;
- height: 78%;
- top: 12%;
- bottom: 10%;
- left: 0;
- right: 0;
- }
- #menu {
- position: fixed;
- height: 78%;
- top: 12%;
- bottom: 10%;
- left: 0;
- right: 0;
- }
- .ownmsg {
- color: gray;
- }
|