mobile search
This commit is contained in:
parent
10d379b791
commit
59ed807f38
|
|
@ -1822,7 +1822,6 @@ input.reserved-seats ~ label svg {
|
|||
color: #000000;
|
||||
transition-property: color;
|
||||
transition-duration: .2s;
|
||||
font-size: 24px;
|
||||
}
|
||||
|
||||
.film_name a:hover{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">@lang('ClientSide.search_result') : {{$query}}</h2>
|
||||
<h2 class="">@lang('ClientSide.search_result') {{$query}}</h2>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
<div class="container">
|
||||
<div class="row kinoteator tab-part">
|
||||
<div class="tab-header d-flex justify-content-between col-12">
|
||||
<h2 class="">{{$query}}</h2>
|
||||
<h4>@lang('ClientSide.search_result') {{$query}}</h4>
|
||||
<div style="height: 5px; margin-left: 5px; position: absolute; bottom: 0px; width: 100px; background-color: rgba(211,61,51,1)"></div>
|
||||
</div>
|
||||
<div class="tab-ozi col-12">
|
||||
|
|
@ -22,11 +22,11 @@
|
|||
<div class="container">
|
||||
@foreach($events as $event)
|
||||
<div class="row">
|
||||
<div class="col-4">
|
||||
<div class="col-4 pr-0">
|
||||
<img class="w-100 img-responsive" src="{{asset($event->images->first()->image_path ?? '#')}}" alt="{{$event->title}}"/>
|
||||
</div>
|
||||
<div class="col-8">
|
||||
<h4 class="film_name"><a href="{{$event->event_url}}">{{$event->title}}</a></h4>
|
||||
<h5 class="film_name"><a href="{{$event->event_url}}">{{$event->title}}</a></h5>
|
||||
<h6 class="text-left"><b>@lang('ClientSide.category')</b>: {{$event->category_title}}</h6>
|
||||
<h6 class="text-left"><b>@lang('ClientSide.venue')</b>: {{$event->venue_name}}</h6>
|
||||
<h6 class="text-left"><b>@lang('ClientSide.date')</b>: {{$event->start_date->format('d.m.Y')}} - {{$event->end_date->format('d.m.Y')}}</h6>
|
||||
|
|
|
|||
Loading…
Reference in New Issue