From f2e9fc9546efb031de80315ed0f6d372eae5a2cc Mon Sep 17 00:00:00 2001 From: 21819 Date: Wed, 24 Jan 2024 14:38:35 +0800 Subject: [PATCH] =?UTF-8?q?=E8=8A=82=E5=81=87=E6=97=A5=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E6=98=BE=E7=A4=BA=E5=AE=8C=E5=96=84=EF=BC=8C=E7=95=8C=E9=9D=A2?= =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/HolidayList.vue | 668 ++++++++++----------------------- 1 file changed, 203 insertions(+), 465 deletions(-) diff --git a/src/components/HolidayList.vue b/src/components/HolidayList.vue index c64e2e0..0bebcb8 100644 --- a/src/components/HolidayList.vue +++ b/src/components/HolidayList.vue @@ -1,482 +1,220 @@ - - \ No newline at end of file + width: 60px; + height: 40px; + display: flex; + justify-content: center; +} + +.holiday-text { + position: absolute; + top: 15%; + left: 85%; + transform: translate(-50%, -50%); + font-size: 12px; + color: #5e72cc; +} + +.adjust-text { + position: absolute; + top: 15%; + left: 85%; + transform: translate(-50%, -50%); + font-size: 12px; + color: #5e72cc; +} + +.content-text { + position: absolute; + top: 70%; + left: 55%; + transform: translate(-50%, -50%); + font-size: 12px; + white-space: nowrap; +} + +.is-holiday { + border-radius: 5px; + background: linear-gradient(145deg, #a7d2b3, #c6f9d5); + box-shadow: 5px 5px 10px #90b69b, + -5px -5px 10px #e2fff3; +} + +.is-adjust { + border-radius: 5px; + background: linear-gradient(145deg, #d9a2a2, #ffc1c1); + box-shadow: 5px 5px 10px #bc8c8c, + -5px -5px 10px #ffdcdc; +} + +/* .is-today { + border-radius: 5px; + background: linear-gradient(145deg, #d9a2a2, #ffc1c1); + box-shadow: 5px 5px 10px #bc8c8c, + -5px -5px 10px #ffdcdc; +} */ + \ No newline at end of file