41 lines
605 B
SCSS
Raw Normal View History

2015-06-29 12:10:24 -07:00
.query-list {
2015-06-30 10:37:48 -07:00
margin: 10px 0;
}
.query-create {
margin: 10px 0;
}
2015-06-30 10:20:22 -07:00
.query-edit {
.name h2 {
display: inline-block;
}
.desc textarea {
width: 200px;
}
.sql textarea {
2015-06-30 12:52:17 -07:00
width: calc(100% - 8px);
2015-06-30 10:20:22 -07:00
height: 100px;
font-family: monospace;
border-color: $tertiary;
}
2015-06-30 12:52:17 -07:00
.left-buttons {
float: left;
}
.right-buttons {
float: right;
}
.clear { clear: both; }
}
.query-params {
border: 1px solid dark-light-diff($primary, $secondary, 60%, -20%);
input {
margin: 9px;
}
}
.query-list, .query-edit, .query-results, .query-params {
2015-06-29 12:10:24 -07:00
margin: 10px 0;
}