HEX
Server: Apache
System: Linux srv-plesk28.ps.kz 5.14.0-284.18.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jun 29 17:06:27 EDT 2023 x86_64
User: greencl1 (10085)
PHP: 8.1.33
Disabled: apache_setenv,dl,eval,exec,openlog,passthru,pcntl_exec,pcntl_fork,popen,posix_getpwuid,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,socket_create,socket_create_listen,socket_create_pair,syslog,system,socket_listen,stream_socket_server
Upload Files
File: /var/www/vhosts/greenclinic.kz/test.greenclinic.kz/src/views/cabinet/Search.vue
<template>
    <div class="search">
        <Header />
        <div class="main__base__margin">
            <h1>
                Поиск по сайту
            </h1>
            <div class="search__block">
                <input type="text">
                <img src="../../assets/icons/search.svg" alt="search">
            </div>
            <div class="search__result">
                <img src="../../assets/all/result__search.png" alt="result__search">
            </div>
        </div>
    </div>
</template>

<script>
import Header from '../components/Header'

export default {
    components: {
        Header,
    },
    data () {
      return {
         
      }
    },
}
</script>

<style scoped lang="less">

.search {
    width: 100%;
    height: 100%;
    font-family: "MontserratBold";

    .main__base__margin {
        width: 1200px;
        margin: 0 auto;
        margin-top: 65px;

        h1 {
            font-style: normal;
            font-weight: 500;
            font-size: 48px;
        }
        .search__block {
            width: 100%;
            height: 70px;
            background: #F7F7F7;
            border-radius: 10px;
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            padding: 0 20px;
            input {
                background: transparent;
                width: 97%;
                border: none;
                outline: none;
                font-size: 20px;
            }
            img {
                cursor: pointer;
            }
        }
        .search__result {
            width: 100%;
            text-align: center;
            margin-top: 42px;
        }
    }
     
}


</style>