rubyx-debugger/app/main/assets/css/app.css.scss

55 lines
671 B
SCSS
Raw Normal View History

2015-07-29 17:50:03 +02:00
// Place your apps css here
@import "susy";
2015-08-09 11:15:05 +02:00
@import "simptip";
2015-07-29 17:50:03 +02:00
$susy: (
columns: 24 ,
gutter-position: split ,
);
.debugger-view { @include container(90%); }
.classes { @include span(3); }
.file-view {
@include span(4);
margin: span(1);
}
.source-view { @include span(6); }
.block-view {
@include span(4);
2015-07-30 14:05:57 +02:00
margin-right: span(2);
2015-07-29 17:50:03 +02:00
height: 200px;
}
.status-view {
@include span(2 at 22);
}
.registers-view {
@include span(20 at 3);
}
.register-view {
2015-08-08 16:52:24 +02:00
@include gallery(4);
2015-07-29 17:50:03 +02:00
margin-top: 10px;
}
2015-08-08 16:52:24 +02:00
.field {
@include span(5)
}
.value {
@include span(18)
}
2015-08-09 11:15:05 +02:00
.value-head {
background-color: #C5FFD9;
}
2015-07-29 17:50:03 +02:00
.bright {
background-color: orange ;
}