123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta name="csrf-token" content="{{ csrf_token() }}">
- <title>Bisame</title>
- <!-- Fonts -->
- <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/css/font-awesome.min.css" rel='stylesheet' type='text/css'>
- <link href="https://fonts.googleapis.com/css?family=Lato:100,300,400,700" rel='stylesheet' type='text/css'>
- <!-- Styles -->
- <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet">
- {{-- <link href="{{ elixir('css/app.css') }}" rel="stylesheet"> --}}
- <link rel="shortcut icon" href="{{ asset('images/favicon.ico') }}" >
- <style>
- @font-face {font-family: "Ostrich-Rounded"; src: url('/images/ostrich-rounded.ttf') ;}
- @font-face {font-family: "Cicle-Fina"; src: url('/images/cicle/Cicle_Semi.ttf') ;}
- .custom-fonts {font-family: "Cicle-Fina" }
- body {
- font-family: 'Cicle-Fina';
- background-color: #86b8b9;
- }
- .background-colored{
- background-color: #86b8b9;
- }
- .footer {
- position: absolute;
- bottom: 0;
- margin-top: 15px;
- font-family: 'Ostrich-Rounded';
- }
- .fa-btn {
- margin-right: 6px;
- }
- .ostrich{
- font-family: 'Ostrich-Rounded';
- }
- .fina{
- font-family: 'Cicle-Fina';
- }
- .foreground {
- z-index:1 !important;
- }
- .light-background-colored{
- background-color: #545454;
- margin-bottom: 0;
- border-color: #545454;
- /*background-color: rgb(249, 242, 236);*/
- }
- .title-app-navbar {
- font-size: 180%;
- }
- .my-navbar-hover:hover {
- color: #87b8b8 !important;
- }
- .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:focus, .navbar-default .navbar-nav > .open > a:hover {
- background-color: #CECECE !important;
- color: black !important;
- }
- .dropdown-menu {
- background-color: #545454 !important;
- color: white !important;
- }
- .navbar-default .navbar-nav .open .dropdown-menu {
- background-color:#545454 !important;
- color: #FCF8E3 !important;
- }
- .dropdown-menu>li>a{
- background-color:#545454 !important;
- color: #FCF8E3 !important;
- }
- .navbar-button-text {
- font-size: 130%;
- }
- .white{
- color: white;
- }
- .navbar-default .navbar-nav > li > a {
- color: #CECECE;
- }
- .navbar-default .navbar-brand {
- color: #CECECE;
- }
- .fill {
- margin:0;
- padding:0;
- background: url('/images/background.png') no-repeat center fixed;
- -webkit-background-size: cover; /* pour anciens Chrome et Safari */
- background-size: cover; /* version standardisée */
- /*background-size: contain;*/
- /* background-size: auto 100%;*/
- /*background-repeat: no-repeat;*/
- background-position: left top;
- }
- .fancy-border{
- border: 1px solid white;
- -moz-border-radius: 10px;
- -webkit-border-radius: 10px;
- }
- .footer-container {
- vertical-align: middle;
- overflow-y : auto;
- position : relative;
- margin: 0 auto;
- max-width: 400px;
- }
- /* @media screen and (max-width: 1280px) {
- .footer-container {
- max-width: 40%;
- }
- }*/
- </style>
- @yield('style')
- @section('page-header')
- @stop
- </head>
- <!--<div class="fill">-->
- @yield('content')
- <body class="fill" id="app-layout"/>
- <!-- @include('partials.footer')-->
- <!-- JavaScripts -->
- <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
- {{-- <script src="{{ elixir('js/app.js') }}"></script> --}}
- <script type="text/javascript" src="{{ asset('js/navbar.js') }}"></script>
- @yield('script')
- </body>
- <!--</div>-->
- </html>
|