summaryrefslogtreecommitdiff
path: root/resources/views/cocktail_index.blade.php
blob: c028ffbfb9e8ede542e8f7d7b10028b18d0b867f (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-left: 5px">

@include('fragments.cocktails')

    </div>
</div>
@endsection