|
1 | 1 |
|
| 2 | +<!DOCTYPE html> |
| 3 | +<html lang="en"> |
| 4 | +<head> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <title>{{ config('app.name') }}</title> |
| 7 | + <?php $cleaner_input = strip_tags($message->home_message); ?> |
| 8 | + <meta name="description" content="{{ $cleaner_input }}"> |
| 9 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 10 | + <link href="//fonts.googleapis.com/css?family=Open+Sans:400,600,800&display=swap" rel="stylesheet"> |
| 11 | + <link rel="stylesheet" href="{{ asset('littlelink/css/normalize.css') }}"> |
| 12 | + <link rel="stylesheet" href="{{ asset('littlelink/css/brands.css') }}"> |
| 13 | + <link rel="stylesheet" href="{{ asset('littlelink/css/hover-min.css') }}"> |
| 14 | + <link rel="stylesheet" href="{{ asset('littlelink/css/animate.css') }}"> |
| 15 | + <script src="https://kit.fontawesome.com/c4a5e06183.js" crossorigin="anonymous"></script> |
| 16 | + @if(file_exists(base_path("littlelink/images/avatar.png" ))) |
| 17 | + <link rel="icon" type="image/png" href="{{ asset('littlelink/images/avatar.png') }}"> |
| 18 | + @else |
| 19 | + <link rel="icon" type="image/svg+xml" href="{{ asset('littlelink/images/logo.svg') }}"> |
| 20 | + @endif |
| 21 | + |
| 22 | + {{-- custom font for logo text --}} |
| 23 | + <style>@font-face{font-family:'ll';src:url({{ asset('littlelink/fonts/littlelink-custom.otf') }}) format("opentype")}</style> |
| 24 | + |
| 25 | + <?php // override dark/light mode if override cookie is set |
| 26 | + $color_scheme_override = isset($_COOKIE["color_scheme_override"]) ? $_COOKIE["color_scheme_override"] : false; ?> |
| 27 | + @if ($color_scheme_override == 'dark') |
| 28 | + <link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-dark.css') }}"> |
| 29 | + @elseif ($color_scheme_override == 'light') |
| 30 | + <link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-light.css') }}"> |
| 31 | + @else |
| 32 | + <link rel="stylesheet" href="{{ asset('littlelink/css/skeleton-auto.css') }}"> |
| 33 | + @endif |
| 34 | + |
| 35 | +<style> |
| 36 | +
|
| 37 | +.logo-container { |
| 38 | + padding-top: 30vh; |
| 39 | +} |
| 40 | +
|
| 41 | +.logo-centered { |
| 42 | + top: 44vh; |
| 43 | + font-size: 130px; |
| 44 | +} |
| 45 | +
|
| 46 | +.logo-img{ |
| 47 | + position: relative; |
| 48 | + width: 250px; |
| 49 | + height: auto; |
| 50 | +} |
| 51 | +
|
| 52 | +.loading { |
| 53 | + animation: loading 3s linear infinite; |
| 54 | +} |
| 55 | +
|
| 56 | +@keyframes loading { |
| 57 | + from { |
| 58 | + transform: rotate(0deg); |
| 59 | + } |
| 60 | + |
| 61 | + to { |
| 62 | + transform: rotate(359deg); |
| 63 | + } |
| 64 | +} |
| 65 | +
|
| 66 | +.generic { |
| 67 | + margin: auto; |
| 68 | + width: 2.5em; |
| 69 | + height: 2.5em; |
| 70 | + border: 0.4em solid transparent; |
| 71 | + border-color: #eee; |
| 72 | + border-top-color: #333; |
| 73 | + border-radius: 50%; |
| 74 | + animation: loadingspin 1s linear infinite; |
| 75 | +} |
| 76 | +
|
| 77 | +@keyframes loadingspin { |
| 78 | + 100% { |
| 79 | + transform: rotate(360deg) |
| 80 | + } |
| 81 | +} |
| 82 | +
|
| 83 | +.loadingtxt:after { |
| 84 | + content: '.'; |
| 85 | + animation: dots 1.5s steps(5, end) infinite;} |
| 86 | +
|
| 87 | +@keyframes dots { |
| 88 | + 0%, 20% { |
| 89 | + color: rgba(0,0,0,0); |
| 90 | + text-shadow: |
| 91 | + .25em 0 0 rgba(0,0,0,0), |
| 92 | + .5em 0 0 rgba(0,0,0,0);} |
| 93 | + 40% { |
| 94 | + color: white; |
| 95 | + text-shadow: |
| 96 | + .25em 0 0 rgba(0,0,0,0), |
| 97 | + .5em 0 0 rgba(0,0,0,0);} |
| 98 | + 60% { |
| 99 | + text-shadow: |
| 100 | + .25em 0 0 white, |
| 101 | + .5em 0 0 rgba(0,0,0,0);} |
| 102 | + 80%, 100% { |
| 103 | + text-shadow: |
| 104 | + .25em 0 0 white, |
| 105 | + .5em 0 0 white;}} |
| 106 | +
|
| 107 | +button { |
| 108 | + border-style: none; |
| 109 | + background-color: #0085ff; |
| 110 | +} |
| 111 | +button:hover { |
| 112 | + background-color: #0065c1; |
| 113 | + box-shadow: 0 10px 20px -10px rgba(0,0,0, 0.6); |
| 114 | +} |
| 115 | +
|
| 116 | +.btn { |
| 117 | + color: #FFF !important; |
| 118 | +} |
| 119 | +
|
| 120 | +</style> |
| 121 | + |
| 122 | +@stack('updater-head') |
| 123 | + |
| 124 | +</head> |
| 125 | +<body> |
| 126 | + |
| 127 | +@stack('updater-body') |
| 128 | + |
| 129 | +</body> |
| 130 | +</html> |
0 commit comments