- optimized images
- serach-view-component with banner image
Before Width: | Height: | Size: 325 KiB After Width: | Height: | Size: 311 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 7.3 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 50 KiB After Width: | Height: | Size: 36 KiB |
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 6.2 KiB |
BIN
src/assets/site/img/main-search-banner.jpg
Normal file
After Width: | Height: | Size: 625 KiB |
Before Width: | Height: | Size: 46 KiB After Width: | Height: | Size: 40 KiB |
Before Width: | Height: | Size: 4.3 KiB After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 925 B After Width: | Height: | Size: 68 B |
|
@ -1,7 +1,8 @@
|
||||||
<template>
|
<template>
|
||||||
<div id="page_style" class="rows site-content page__style page__description" autocomplete="off">
|
<div id="page_style" class="rows site-content page__style page__description" autocomplete="off">
|
||||||
<vs-input v-on:search-change="onSearch" v-bind:propDisplay="searchTerm" v-bind:placeholder="'Enter your search term...'"></vs-input>
|
<div class="container-fluid page-breaker mz-5">
|
||||||
|
<vs-input v-on:search-change="onSearch" v-bind:propDisplay="searchTerm" v-bind:placeholder="'Enter your search term...'"></vs-input>
|
||||||
|
</div>
|
||||||
<div class="column is-half is-offset-one-quarter" style="padding-top: 0; margin-top: 0">
|
<div class="column is-half is-offset-one-quarter" style="padding-top: 0; margin-top: 0">
|
||||||
<!-- <div class="tabs is-centered">
|
<!-- <div class="tabs is-centered">
|
||||||
<ul id="id-results-tabs">
|
<ul id="id-results-tabs">
|
||||||
|
@ -140,3 +141,19 @@
|
||||||
import SearchViewComponent from "./search-view-component";
|
import SearchViewComponent from "./search-view-component";
|
||||||
export default SearchViewComponent;
|
export default SearchViewComponent;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.page-breaker {
|
||||||
|
background-image: url(./../../assets/site/img/main-search-banner.jpg);
|
||||||
|
background-size: cover;
|
||||||
|
background-position-x: center;
|
||||||
|
background-position-y: 25%;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
padding: 6.2em;
|
||||||
|
min-height: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.mz-5 {
|
||||||
|
margin-bottom: 1.5 rem;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|