blob: 5e3385c089ac2abc7f3cf60406671898ad6b5370 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
@extends('layouts.base')
@section('header')
Cocktailsuche
@endsection
@section('css')
<style>
.card {
box-shadow: inherit !important;
}
.form-text {
color: rgba(0,0,0,.7);
}
h2 {
font-size: 1.8rem !important;
}
#cocktail_search_form_field > input {
/*font-size: 1.2rem !important;*/
font-size: 18px !important;
}
</style>
@endsection
@section('content')
@include('snippets.breadcrumbs')
<main class="site-main" id="main">
<div class="container" style="padding: 0">
@include('fragments.cocktails')
</div>
</div>
@endsection
|