diff --git a/public/css/imprint/imprint.css b/public/css/imprint/imprint.css new file mode 100644 index 0000000..30f93cb --- /dev/null +++ b/public/css/imprint/imprint.css @@ -0,0 +1,23 @@ +@keyframes fadeAndScale { + 0% { + opacity: 0; + /*transform: scale(1);*/ + } + 100% { + opacity: 0.2; + /*transform: scale(1);*/ + } +} +.funny-gift { + position: fixed; + top: 0; + left: 0; + width: 100vw; + height: 100vh; + object-fit: cover; + z-index: 9999; + opacity: 0; + pointer-events: none; + animation: fadeAndScale 20s linear forwards; + animation-delay: 2s; +} diff --git a/resources/views/content/imprint.blade.php b/resources/views/content/imprint.blade.php index 0fab3ec..e3aee20 100644 --- a/resources/views/content/imprint.blade.php +++ b/resources/views/content/imprint.blade.php @@ -1,9 +1,11 @@ @extends('layout.app') @section('scripts') + @endsection @section('content') {{ __('app.imprint.alt') }} + funny

{{ __('app.imprint.title') }}


{!! __('app.imprint.content') !!}