red-ui/paligo-styles/header.scss
2021-07-01 13:45:39 +03:00

60 lines
1.2 KiB
SCSS

@import '../apps/red-ui/src/assets/styles/red-variables';
.portal-header {
z-index: 1;
height: 450px;
h1 {
font-size: 64px;
font-weight: 300;
line-height: 87px;
margin-top: 68px;
margin-bottom: 40px;
}
.portal-search {
max-width: 600px;
margin: auto;
position: relative;
.search-field {
width: 100%;
border: 1px solid $grey-5;
border-radius: 8px;
background-color: $white;
}
.search-field::placeholder {
opacity: 0.7;
}
.search-field,
.search-field::placeholder {
color: $accent;
font-size: 14px;
line-height: 18px;
}
.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 {
font-size: 42px;
line-height: 57px;
}
}