From 445a12c17d3ab403b6f8cd0352004528245bc8d6 Mon Sep 17 00:00:00 2001 From: Dhaverd Date: Fri, 7 Jun 2024 19:45:12 +0800 Subject: [PATCH] =?UTF-8?q?=D0=A2=D0=B5=D1=81=D1=82=D0=BE=D0=B2=D1=8B?= =?UTF-8?q?=D0=B9=20=D0=BD=D0=B5=D0=BE=D0=BD-=D1=80=D0=B5=D0=B4=D0=B8?= =?UTF-8?q?=D0=B7=D0=B0=D0=B9=D0=BD=20=D1=80=D0=B0=D0=BF=D0=B8=D1=81=D0=B0?= =?UTF-8?q?=D0=BD=D0=B8=D1=8F=20=D1=81=D1=82=D1=80=D0=B8=D0=BC=D0=BE=D0=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- resources/css/app.css | 82 +++++++++++++++++++ resources/views/Schedule.vue | 8 +- .../views/Schedule/AdditionalButtons.vue | 22 ++--- resources/views/Schedule/Links.vue | 8 +- resources/views/Schedule/ScheduleTable.vue | 6 +- resources/views/Welcome.vue | 6 +- 6 files changed, 108 insertions(+), 24 deletions(-) diff --git a/resources/css/app.css b/resources/css/app.css index 4846a2a..02a36c1 100644 --- a/resources/css/app.css +++ b/resources/css/app.css @@ -8,3 +8,85 @@ #F6D242) border-box; border-radius: 14px; } + +.nice-bg { + background-color: #000814 !important; + background-size: 200% 200%!important; + height: 100vh!important; +} + +.nice-bg-sheet { + background-color: #1e1f22 !important; +} + +.bricks-bg { + --s: 45px!important; /* control the size*/ + --c1: #bb593e !important; + --c2: #bb593e !important; + --c3: #2c2e2a!important; + + --p:at 45% 40%,#0000 75%,; + --g1:conic-gradient(var(--p) var(--c1) 0)!important; + --g2:conic-gradient(var(--p) var(--c2) 0)!important; + background: + var(--g1),var(--g2) calc(2*var(--s)) 0, + var(--g2) calc(3*var(--s)) var(--s), + var(--g1) var(--s) var(--s) var(--c3)!important; + background-size: calc(4*var(--s)) calc(2*var(--s))!important; +} + +.nice-bg-border { + border: 0.2rem solid #fff!important; + border-radius: 2rem!important; + padding: 0.4em!important; + box-shadow: 0 0 .2rem #fff, + 0 0 .2rem #fff, + 0 0 2rem #bc13fe, + 0 0 0.8rem #bc13fe, + 0 0 2.8rem #bc13fe, + inset 0 0 1.3rem #bc13fe!important; + animation: pulsate 1.5s infinite alternate!important; +} + +.white-text { + color: #fff!important; +} + +.neon-text { + color: #fff!important; + text-shadow: + 0 0 3px #fff, + 0 0 5px #fff, + 0 0 11px #fff, + 0 0 16px #bc13fe, + 0 0 20px #bc13fe, + 0 0 26px #bc13fe, + 0 0 30px #bc13fe, + 0 0 34px #bc13fe !important; +} + +@keyframes pulsate { + + 100% { + box-shadow: + 0 0 4px #fff, + 0 0 11px #fff, + 0 0 19px #fff, + 0 0 40px #bc13fe, + 0 0 80px #bc13fe, + 0 0 90px #bc13fe, + 0 0 100px #bc13fe, + 0 0 150px #bc13fe; + } + 0% { + box-shadow: + 0 0 2px #fff, + 0 0 4px #fff, + 0 0 6px #fff, + 0 0 10px #bc13fe, + 0 0 45px #bc13fe, + 0 0 55px #bc13fe, + 0 0 70px #bc13fe, + 0 0 80px #bc13fe; + } +} diff --git a/resources/views/Schedule.vue b/resources/views/Schedule.vue index a5d15af..0e1c1c3 100644 --- a/resources/views/Schedule.vue +++ b/resources/views/Schedule.vue @@ -1,10 +1,10 @@