|
13 | 13 | <!-- Styles --> |
14 | 14 | <link href="{{ asset('css/app.css') }}" rel="stylesheet"> |
15 | 15 | </head> |
16 | | -<body class="bg-teal-lightest font-sans font-normal"> |
| 16 | +<body class="bg-teal-lightest font-sans font-normal antialiased"> |
17 | 17 | <div class="flex flex-col"> |
18 | 18 | @if(Route::has('login')) |
19 | 19 | <div class="absolute pin-t pin-r mt-4 mr-4"> |
20 | 20 | @auth |
21 | | - <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase">Home</a> |
| 21 | + <a href="{{ url('/home') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">Home</a> |
22 | 22 | @else |
23 | | - <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase pr-6">Login</a> |
24 | | - <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase">Register</a> |
| 23 | + <a href="{{ route('login') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase pr-6">Login</a> |
| 24 | + <a href="{{ route('register') }}" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase">Register</a> |
25 | 25 | @endauth |
26 | 26 | </div> |
27 | 27 | @endif |
28 | 28 |
|
29 | 29 | <div class="min-h-screen flex items-center justify-center"> |
30 | 30 | <div class="flex flex-col justify-around h-full"> |
31 | 31 | <div> |
32 | | - <h1 class="text-grey-darker text-center font-hairline tracking-wide text-7xl mb-6"> |
| 32 | + <h1 class="text-grey-darker text-center font-thin tracking-wide text-5xl mb-6"> |
33 | 33 | {{ config('app.name', 'Laravel') }} |
34 | 34 | </h1> |
35 | 35 | <ul class="list-reset"> |
36 | 36 | <li class="inline pr-8"> |
37 | | - <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Documentation">Documentation</a> |
| 37 | + <a href="https://laravel.com/docs" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Documentation">Documentation</a> |
38 | 38 | </li> |
39 | 39 | <li class="inline pr-8"> |
40 | | - <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Laracasts">Laracasts</a> |
| 40 | + <a href="https://laracasts.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Laracasts">Laracasts</a> |
41 | 41 | </li> |
42 | 42 | <li class="inline pr-8"> |
43 | | - <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="News">News</a> |
| 43 | + <a href="https://laravel-news.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="News">News</a> |
44 | 44 | </li> |
45 | 45 | <li class="inline pr-8"> |
46 | | - <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="Forge">Forge</a> |
| 46 | + <a href="https://forge.laravel.com" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="Forge">Forge</a> |
47 | 47 | </li> |
48 | 48 | <li class="inline pr-8"> |
49 | | - <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-dark uppercase" title="GitHub">GitHub</a> |
| 49 | + <a href="https://github.com/laravel/laravel" class="no-underline hover:underline text-sm font-normal text-teal-darker uppercase" title="GitHub">GitHub</a> |
50 | 50 | </li> |
51 | 51 | </ul> |
52 | 52 | </div> |
|
0 commit comments