oreolek6-laravel/resources/sass/layout.scss

82 lines
1.2 KiB
SCSS
Vendored

input[type=button],
input[type=submit] {
@extend .btn;
}
.navbar-nav {
flex-direction: row;
> .nav-item {
margin-left: 1em;
margin-right: 1em;
}
}
.email_link {
font-size: $font-size-sm;
text-align: center;
margin-bottom: $navbar-padding-y;
}
span.hidden-xs {
display: inline-block !important;
}
.hidden {
display: none;
}
.link_top {
position: fixed;
bottom: ($font-size-base * 2);
left: ($font-size-base * 2);
}
code {
white-space: normal;
}
footer {
@include make-row();
margin-top: $font-size-base;
div {
@include make-col(12);
text-align: center;
}
}
.main_content {
@include make-col(12);
}
.paging { // pagination
@include make-row();
text-align: center;
a {
@media screen and (max-width: 767px) {
@include make-col(1);
}
margin-left: $font-size-base;
&.active {
font-weight: 700;
@media screen and (min-width: 768px) {
font-size: $font-size-base * 1.25;
}
}
}
}
.groupform {
margin-top: -3em;
float: right;
width: 50%;
.form-group {
width: 50%;
display: inline-block;
}
input {
margin-right: 1em;
}
}
.hyphenate {
hyphens: auto;
}