Advertisement
Guest User

header.blade.php

a guest
Dec 30th, 2015
291
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.75 KB | None | 0 0
  1. @extends('master')
  2. @section('header')
  3.     <title>cookie monster</title>
  4.     <link href="https://fonts.googleapis.com/css?family=Lato:100" rel="stylesheet" type="text/css">
  5.     <style>
  6.         html, body {
  7.             height: 100%;
  8.         }
  9.  
  10.         body {
  11.             margin: 0;
  12.             padding: 0;
  13.             width: 100%;
  14.             display: table;
  15.             font-weight: 100;
  16.             font-family: 'Lato';
  17.         }
  18.  
  19.         .container {
  20.             text-align: center;
  21.             display: table-cell;
  22.             vertical-align: middle;
  23.         }
  24.  
  25.         .content {
  26.             text-align: center;
  27.             display: inline-block;
  28.         }
  29.  
  30.         .title {
  31.             font-size: 96px;
  32.         }
  33. </style>
  34. @stop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement