From af86cff954e64f8d2d290b1462dab04653332f00 Mon Sep 17 00:00:00 2001 From: Gaeon Kim <rkdjs1104@ajou.ac.kr> Date: Sat, 25 Nov 2023 16:18:51 +0900 Subject: [PATCH] =?UTF-8?q?feat:=20create=20=EC=9D=BC=EC=A0=95=EC=A1=B0?= =?UTF-8?q?=ED=9A=8C=EB=AA=A8=EB=8B=AC=20css?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages/inquiryModal.module.css | 68 +++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 src/pages/inquiryModal.module.css diff --git a/src/pages/inquiryModal.module.css b/src/pages/inquiryModal.module.css new file mode 100644 index 0000000..9168f90 --- /dev/null +++ b/src/pages/inquiryModal.module.css @@ -0,0 +1,68 @@ +/* ScheduleModal.css (예시 파일명) */ + +.modal{ + display: none; + position: fixed; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: rgba(0, 0, 0, 0.5); /* 반투명한 배경 */ + justify-content: center; + align-items: center; + z-index: 1000; +} + +.modal.open{ + display: flex; +} + +.modal_content { + background-color: white; + padding: 20px; + border-radius: 5px; + position: relative; + width: 300px; + +} + +label { + display: block; + margin-bottom: 5px; +} + +input { + width: 100%; + margin-bottom: 10px; + padding: 8px; + box-sizing: border-box; +} +.save{ + background-color:#8393BE; + margin-left:190px; + border:none; + color: white; + width: 50px; + height: 24px; + cursor: pointer; + border: none; + border-radius: 5px; + box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 그림자 추가 */ + transition: background-color 0.3s, color 0.3s, transform 0.3s; + +} + +.cancel{ + background-color:#F97E7E; + margin-left:10px; + border:none; + color: white; + width: 50px; + height: 24px; + cursor: pointer; + border: none; + border-radius: 5px; + box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 그림자 추가 */ + transition: background-color 0.3s, color 0.3s, transform 0.3s; + +} -- GitLab