mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
38 lines
566 B
CSS
38 lines
566 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: Lucida Grande;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#app-horizontal {
|
|
background-image: url(static/images/linen.png);
|
|
display: -webkit-box;
|
|
min-height: 100%;
|
|
-webkit-box-orient: horizontal;
|
|
}
|
|
|
|
#app-vertical {
|
|
display: -webkit-box;
|
|
-webkit-box-flex: 1;
|
|
-webkit-box-orient: vertical;
|
|
background-color: red;
|
|
}
|
|
|
|
#main {
|
|
position: relative;
|
|
display: -webkit-box;
|
|
-webkit-box-flex: 1;
|
|
-webkit-box-orient: vertical;
|
|
background-color: yellow;
|
|
}
|
|
|
|
.pane {
|
|
display: -webkit-box;
|
|
background-color: blue;
|
|
}
|
|
|