Merge pull request 'fix/index-sites-items-issue-35' (#41) from fix/index-sites-items-issue-35 into develop
Reviewed-on: #41
This commit is contained in:
commit
7c80fdd310
File diff suppressed because one or more lines are too long
|
@ -1,20 +1,39 @@
|
||||||
// .hero{
|
// .hero{
|
||||||
.search{
|
.search{
|
||||||
.input-group * {
|
@include xy-grid();
|
||||||
margin: 0;
|
// display: flex;
|
||||||
}
|
// flex-direction: column;
|
||||||
|
// align-items: center;
|
||||||
.input-group {
|
.input-group {
|
||||||
|
@include breakpoint(small){
|
||||||
|
@include xy-cell (12);
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
@include breakpoint(medium){
|
||||||
|
@include xy-cell (6);
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
|
@include breakpoint(large){
|
||||||
|
@include xy-cell (4);
|
||||||
|
margin-left: auto;
|
||||||
|
margin-right: auto;
|
||||||
|
}
|
||||||
position: relative;
|
position: relative;
|
||||||
border-radius: 4rem;
|
border-radius: 4rem;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
.appear {
|
||||||
|
right: 0;
|
||||||
|
position: absolute;
|
||||||
|
height: 100%;
|
||||||
|
padding: 0.3rem 1rem;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.input-group .appear {
|
.input-group * {
|
||||||
right: 0;
|
margin: 0;
|
||||||
position: absolute;
|
|
||||||
height: 100%;
|
|
||||||
padding: 0.3rem 1rem;
|
|
||||||
}
|
}
|
||||||
.button{
|
.button{
|
||||||
border-color: $primary-color;
|
border-color: $primary-color;
|
||||||
|
@ -35,7 +54,7 @@
|
||||||
border:none;
|
border:none;
|
||||||
background-color: $input-background-focus;
|
background-color: $input-background-focus;
|
||||||
position: relative;
|
position: relative;
|
||||||
// right: 2rem;
|
padding-right: $global-padding * 9;
|
||||||
+ .appear {
|
+ .appear {
|
||||||
display: block;
|
display: block;
|
||||||
background-color: scale-color($input-background-focus, $lightness: -20%);
|
background-color: scale-color($input-background-focus, $lightness: -20%);
|
||||||
|
|
|
@ -197,7 +197,7 @@ main {
|
||||||
}
|
}
|
||||||
header {
|
header {
|
||||||
display: none;
|
display: none;
|
||||||
|
|
||||||
// margin-top: 2*$global-margin;
|
// margin-top: 2*$global-margin;
|
||||||
// border-top: 1px solid $body-font-color;
|
// border-top: 1px solid $body-font-color;
|
||||||
// padding: $global-padding*2 0;
|
// padding: $global-padding*2 0;
|
||||||
|
@ -222,6 +222,11 @@ main {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.load_more {
|
||||||
|
display:flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
.accordion-content {
|
.accordion-content {
|
||||||
padding-top: 0;
|
padding-top: 0;
|
||||||
section {
|
section {
|
||||||
|
|
Loading…
Reference in New Issue