mirror of
https://github.com/pierre42100/comunic
synced 2024-11-17 02:51:13 +00:00
65 lines
1.0 KiB
SCSS
65 lines
1.0 KiB
SCSS
.simplesearch {
|
|
|
|
h1 {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.center {
|
|
text-align: center;
|
|
}
|
|
|
|
|
|
input {
|
|
display: inline-block;
|
|
max-width: 30rem;
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.search-image {
|
|
margin-top: 1rem;
|
|
img {
|
|
border-radius: 4px;
|
|
|
|
@include breakpoint(mobile-only) {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.search-item {
|
|
@include breakpoint(mobile-only) {
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
.search-wrapper {
|
|
.search-submit {
|
|
height: 52px;
|
|
padding: 0 10px;
|
|
img {
|
|
width: 30px;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
.search-details {
|
|
float: right;
|
|
margin-top: -2.5rem;
|
|
font-weight: bold;
|
|
font-size: 1rem;
|
|
color: lighten($core-text,20%);
|
|
|
|
@include breakpoint(mobile-only) {
|
|
float: none;
|
|
margin-top: -0.2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
}
|
|
|
|
hr {
|
|
border-bottom: 1px solid #eee;
|
|
}
|
|
|
|
}
|