-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
feat : 멘티 캘린더 블락 기능
- Loading branch information
Showing
5 changed files
with
216 additions
and
63 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
[ | ||
{ | ||
"date": "2024/03/15" | ||
}, | ||
{ | ||
"date": "2024/03/30" | ||
}, | ||
{ | ||
"date": "2024/03/12" | ||
}, | ||
{ | ||
"date": "2024/03/25" | ||
}, | ||
{ | ||
"date": "2024/03/08" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -235,3 +235,100 @@ ul::-webkit-scrollbar { | |
font-size: 14px; | ||
font-family: "Pretendard-Regular"; | ||
} | ||
|
||
@font-face { | ||
font-family: "Pretendard-Regular"; | ||
src: url("https://cdn.jsdelivr.net/gh/Project-Noonnu/[email protected]/Pretendard-Regular.woff") | ||
format("woff"); | ||
} | ||
.modal { | ||
display: none; | ||
position: fixed; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
z-index: 99; | ||
background-color: rgba(0, 0, 0, 0.6); | ||
} | ||
|
||
.modal button { | ||
outline: none; | ||
cursor: pointer; | ||
border: 0; | ||
} | ||
|
||
.modal > section { | ||
width: 90%; | ||
max-width: 323px; | ||
max-height: 221px; | ||
margin: 0 auto; | ||
border-radius: 20px; | ||
background-color: #fff; | ||
/* 팝업이 열릴때 스르륵 열리는 효과 */ | ||
animation: modal-show 0.3s; | ||
overflow: hidden; | ||
} | ||
|
||
.modal > section > header { | ||
position: relative; | ||
width: 60px; | ||
height: 60px; | ||
margin: auto; | ||
padding-top: 30px; | ||
padding-bottom: 23px; | ||
font-weight: 700; | ||
} | ||
|
||
.modal > section > main { | ||
text-align: center; | ||
font-weight: 600; | ||
font-size: 14px; | ||
font-family: "Pretendard-Regular"; | ||
} | ||
|
||
.modal > section > footer { | ||
padding: 24px 23px; | ||
text-align: right; | ||
} | ||
|
||
.modal > section > footer button { | ||
padding: 6px 12px; | ||
color: #fc389a; | ||
background-color: white; | ||
border-width: 2px; | ||
border-style: solid; | ||
border-radius: 50px; | ||
border-color: #fc389a; | ||
font-size: 12px; | ||
margin: auto; | ||
font-weight: 600; | ||
font-family: "Pretendard-Regular"; | ||
} | ||
|
||
.modal.openModal { | ||
display: flex; | ||
align-items: center; | ||
/* 팝업이 열릴때 스르륵 열리는 효과 */ | ||
animation: modal-bg-show 0.3s; | ||
} | ||
|
||
@keyframes modal-show { | ||
from { | ||
opacity: 0; | ||
margin-top: -50px; | ||
} | ||
to { | ||
opacity: 1; | ||
margin-top: 0; | ||
} | ||
} | ||
|
||
@keyframes modal-bg-show { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} |