2016-05-01 19:56:30 +00:00
|
|
|
@import '../constants/dimensions';
|
|
|
|
@import '../constants/colors';
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
background-color: $bg-super-dark;
|
|
|
|
color: $font-super-dark-bg;
|
|
|
|
display: grid;
|
|
|
|
|
|
|
|
grid-template-rows: 0.5fr 0.5fr;
|
|
|
|
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
grid-column-start: 1;
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: span 2;
|
|
|
|
}
|
|
|
|
|
2016-06-19 00:08:14 +00:00
|
|
|
.drag {
|
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: span 2;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
& > * {
|
|
|
|
cursor: ew-resize;
|
|
|
|
position: absolute;
|
2016-06-19 01:30:13 +00:00
|
|
|
//background: rgba(255, 0, 0, 0.3);
|
2016-06-19 00:08:14 +00:00
|
|
|
height: 100%;
|
2016-06-19 01:30:13 +00:00
|
|
|
z-index: 10;
|
2016-06-19 00:08:14 +00:00
|
|
|
width: $drag-width;
|
|
|
|
top: 0;
|
2016-06-19 01:30:13 +00:00
|
|
|
// More to the right so it doesn't cover scrollbars
|
|
|
|
left: -$drag-width / 8;
|
2016-06-19 00:08:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-01 19:56:30 +00:00
|
|
|
.request-pane {
|
2016-06-19 00:08:14 +00:00
|
|
|
grid-column-start: 3;
|
2016-05-01 19:56:30 +00:00
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: span 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
.response-pane {
|
2016-06-19 00:08:14 +00:00
|
|
|
grid-column-start: 5;
|
2016-05-01 19:56:30 +00:00
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: span 2;
|
2016-06-19 00:08:14 +00:00
|
|
|
position: relative;
|
2016-06-19 07:27:57 +00:00
|
|
|
background-color: $bg-super-dark;
|
2016-05-01 19:56:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: $breakpoint-md) {
|
|
|
|
.wrapper {
|
|
|
|
.request-pane {
|
2016-06-19 00:08:14 +00:00
|
|
|
grid-column-start: 3;
|
|
|
|
grid-column-end: span 3;
|
2016-05-01 19:56:30 +00:00
|
|
|
grid-row-start: 1;
|
|
|
|
grid-row-end: span 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.response-pane {
|
2016-06-19 00:08:14 +00:00
|
|
|
grid-column-start: 3;
|
|
|
|
grid-column-end: span 3;
|
2016-05-01 19:56:30 +00:00
|
|
|
grid-row-start: 2;
|
|
|
|
grid-row-end: span 1;
|
|
|
|
}
|
2016-06-19 00:08:14 +00:00
|
|
|
|
2016-06-19 01:30:13 +00:00
|
|
|
.drag--pane {
|
2016-06-19 00:08:14 +00:00
|
|
|
display: none;
|
|
|
|
}
|
2016-05-01 19:56:30 +00:00
|
|
|
}
|
|
|
|
}
|