diff --git a/resources/css/app.css b/resources/css/app.css index b64ffef..6e30fdf 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -108,3 +108,66 @@ main a:not(.mod-list-component):not(.tab):not([role="menuitem"]) { transform-origin: 100% 100%; background-color: #0e7490; } + +.rainbow { + height: 100%; + width: 100%; + left: 0; + right: 0; + top: 0; + bottom: 0; + position: absolute; + background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3); + background-size: 1800% 1800%; + -webkit-animation: rainbow 18s ease infinite; + -o-animation: rainbow 18s ease infinite; + animation: rainbow 18s ease infinite; +} + +@-webkit-keyframes rainbow { + 0% { + background-position: 0 82% + } + 50% { + background-position: 100% 19% + } + 100% { + background-position: 0 82% + } +} + +@-moz-keyframes rainbow { + 0% { + background-position: 0 82% + } + 50% { + background-position: 100% 19% + } + 100% { + background-position: 0 82% + } +} + +@-o-keyframes rainbow { + 0% { + background-position: 0 82% + } + 50% { + background-position: 100% 19% + } + 100% { + background-position: 0 82% + } +} + +@keyframes rainbow { + 0% { + background-position: 0 82% + } + 50% { + background-position: 100% 19% + } + 100% { + background-position: 0 82% + } +} diff --git a/resources/views/components/warning.blade.php b/resources/views/components/warning.blade.php index a4c5ab0..c9b4e4e 100644 --- a/resources/views/components/warning.blade.php +++ b/resources/views/components/warning.blade.php @@ -1,3 +1,4 @@ -
Notice: The Forge is currently under heavy construction. Expect nothing to work. Data is reset every hour.
+{!! __('The Forge is currently under heavy construction. Expect nothing to work. Data is reset every hour.') !!}