scinote-web/app/assets/stylesheets/extend/bootstrap.scss
2016-09-14 11:37:17 +02:00

52 lines
911 B
SCSS

/* Extending Bootstrap */
@import "colors";
/* navbar avatar image */
.navbar-nav .avatar {
border-radius: 30px;
height: 30px;
margin-top: -14px;
position: relative;
width: 30px;
top: 5px;
}
// Active tab with error should retain error color if clicked on again
.nav-tabs > li.active.has-error > a {
color: $color-apple-blossom;
}
@media (max-width: 886px) {
// line 18, /usr/local/bundle/gems/bootstrap-sass-3.3.6/assets/stylesheets/bootstrap/mixins/_responsive-visibility.scss
.hidden-xs-custom {
display: none;
}
}
@media (min-width: 1075px) {
.col-sm-3-custom {
float: left;
width: 25%;
}
.col-sm-9-custom {
float: left;
width: 75%;
}
}
.col-sm-3-custom {
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
position: relative;
}
.col-sm-9-custom {
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
position: relative;
}