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