red-ui/paligo-styles/header.scss
2021-08-02 16:10:43 +03:00

46 lines
866 B
SCSS

@import '../apps/red-ui/src/assets/styles/variables';
@import 'mixin';
.portal-header {
z-index: 1;
height: 450px;
h1 {
@include heading-1;
margin-top: 68px;
margin-bottom: 40px;
}
.portal-search {
max-width: 600px;
margin: auto;
position: relative;
@include search-input;
.search-field {
padding: 12px 17px;
}
.btn {
position: absolute;
right: 0;
padding: 11px 18px;
background-color: transparent;
color: $accent;
cursor: pointer;
border-radius: 0 8px 8px 0;
&:hover {
background-color: $primary;
}
}
}
}
@media only screen and (max-width: 768px) {
.portal-header h1 {
@include heading-2;
}
}