2013-09-01 19:41:39 +00:00
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
2014-02-22 06:07:27 +00:00
|
|
|
text-rendering: optimizeLegibility;
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|
2013-09-04 16:39:52 +00:00
|
|
|
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
2013-09-13 22:57:57 +00:00
|
|
|
background: @background;
|
|
|
|
color: @foreground;
|
2013-09-04 16:39:52 +00:00
|
|
|
}
|
|
|
|
|
2013-09-01 19:41:39 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2014-02-08 18:05:07 +00:00
|
|
|
font-family: "Segoe UI", "Helvetica", "Droid Sans", sans-serif;
|
2013-09-04 16:39:52 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: stretch;
|
|
|
|
align-content: stretch;
|
|
|
|
}
|
|
|
|
|
2013-09-06 07:04:20 +00:00
|
|
|
a[target] {
|
2013-09-13 22:57:57 +00:00
|
|
|
color: @foreground;
|
2013-09-06 07:04:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
:focus {
|
|
|
|
outline: @accent auto 5px;
|
|
|
|
}
|
|
|
|
|
2013-09-04 16:39:52 +00:00
|
|
|
//MACRO-LEVEL POSITIONING
|
|
|
|
|
|
|
|
.toolbar {
|
2013-09-04 16:43:41 +00:00
|
|
|
flex: 0 0 30px;
|
2013-09-16 17:22:49 +00:00
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
2013-09-04 16:39:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.tabs {
|
2013-09-04 16:43:41 +00:00
|
|
|
flex: 0 0 32px;
|
2013-09-04 16:39:52 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 22:45:10 +00:00
|
|
|
.central {
|
2013-11-03 02:29:10 +00:00
|
|
|
display: flex;
|
2013-09-16 17:22:49 +00:00
|
|
|
flex-grow: 1;
|
2013-11-03 02:29:10 +00:00
|
|
|
align-items: stretch;
|
|
|
|
align-content: stretch;
|
2013-09-04 16:39:52 +00:00
|
|
|
}
|
|
|
|
|
2013-11-06 22:45:10 +00:00
|
|
|
.editing {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
align-items: stretch;
|
|
|
|
align-content: stretch;
|
|
|
|
flex-direction: column;
|
2013-11-03 02:29:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#editor {
|
|
|
|
flex-grow: 1;
|
|
|
|
padding-top: 2px;
|
|
|
|
}
|
|
|
|
|
2013-09-04 16:39:52 +00:00
|
|
|
.bottom-bar {
|
2013-09-04 17:01:12 +00:00
|
|
|
flex: 0 0 auto;
|
2013-09-04 16:39:52 +00:00
|
|
|
align-self: flex-end;
|
|
|
|
width: 100%;
|
2013-09-04 17:01:12 +00:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-content: stretch;
|
2013-09-15 20:00:16 +00:00
|
|
|
box-shadow: 0 -4px 4px rgba(0, 0, 0, .1);
|
|
|
|
z-index: 99;
|
2013-09-16 17:22:49 +00:00
|
|
|
-webkit-transform: translateZ(0);
|
|
|
|
transform: translateZ(0);
|
2013-09-01 19:41:39 +00:00
|
|
|
}
|