1
0
Fork 0
arangodb/js/apps/system/aardvark/frontend/scss/_resizing.scss

54 lines
856 B
SCSS

div.resizecontainer {
margin: 0px auto;
&:after {
clear: both;
content: ".";
display: block;
font-size: 0px;
height: 0px;
visibility: hidden;
}
}
@media (max-width: 798px) {
#arangoCollectionUl {
display: none;
}
#collectionsDropdown ul {
width: auto !important;
}
#arangoCollectionSelect {
display: inline-block;
}
}
@media (min-width: 799px) and (max-width: 1041px) {
#arangoCollectionUl a {
font-size: 11px;
padding: 7px 5px 10px;
}
}
@media (min-width: 1042px) and (max-width: 1284px) {
#arangoCollectionUl a {
font-size: 13px;
}
}
@for $i from 0 through 11 {
$min: 242px * $i;
@media (min-width: $min + 72) and (max-width: $min + 243 + 71) {
div.resizecontainer {
width: $min;
}
}
}
div.centralRow {
margin: {
top: 65px;
bottom: 65px;
}
}