-
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.
- Loading branch information
Showing
3 changed files
with
139 additions
and
126 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,73 +1,73 @@ | ||
.reportContainer { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
padding: 20px; | ||
font-family: Arial, sans-serif; | ||
background-color: #f9f9f9; | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
width: 400px; | ||
margin: 20px auto; | ||
} | ||
|
||
h3 { | ||
margin-bottom: 20px; | ||
color: #333; | ||
font-size: 18px; | ||
text-align: center; | ||
margin: 20px; | ||
} | ||
|
||
.calendarGrid { | ||
display: grid; | ||
grid-template-columns: repeat(7, 1fr); | ||
gap: 10px; | ||
margin: 20px 0; | ||
.controlRow { | ||
display: flex; /* 수평으로 배치 */ | ||
align-items: center; /* 세로 중앙 정렬 */ | ||
justify-content: center; /* 수평 중앙 정렬 */ | ||
gap: 10px; /* 요소 간격 */ | ||
margin-bottom: 20px; /* 아래 여백 */ | ||
} | ||
|
||
.calendarDay { | ||
width: 40px; | ||
height: 40px; | ||
border-radius: 50%; | ||
background-color: #e0f7fa; | ||
.dropdownContainer { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
cursor: pointer; | ||
transition: background-color 0.3s; | ||
} | ||
|
||
.calendarDay:hover { | ||
background-color: #b2ebf2; | ||
gap: 5px; /* 레이블과 드롭다운 사이의 간격 */ | ||
} | ||
|
||
.calendarDay.selected { | ||
background-color: #00bcd4; | ||
color: white; | ||
.dropdownContainer label { | ||
font-size: 16px; | ||
color: #555; | ||
} | ||
|
||
.downloadButton { | ||
padding: 10px 20px; | ||
background-color: #00bcd4; | ||
color: white; | ||
border: none; | ||
select { | ||
padding: 8px 12px; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
border: 1px solid #ccc; | ||
font-size: 16px; | ||
background-color: #fff; | ||
cursor: pointer; | ||
height: 40px; /* 드롭다운 높이 통일 */ | ||
} | ||
|
||
.downloadButton:hover { | ||
background-color: #0097a7; | ||
} | ||
|
||
.monthSelector { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin-bottom: 20px; | ||
select:focus { | ||
outline: none; | ||
border-color: #007bff; | ||
} | ||
|
||
.arrowButton { | ||
background: none; | ||
.downloadButton { | ||
padding: 10px 20px; | ||
background-color: #007bff; | ||
color: #fff; | ||
border: none; | ||
font-size: 24px; | ||
border-radius: 5px; | ||
font-size: 16px; | ||
cursor: pointer; | ||
padding: 0 10px; | ||
line-height: 1; | ||
transition: background-color 0.3s ease; | ||
height: 40px; /* 버튼 높이 드롭다운과 동일하게 */ | ||
} | ||
|
||
.arrowButton:hover { | ||
color: #0056b3; | ||
.downloadButton:hover { | ||
background-color: #0056b3; | ||
} | ||
|
||
.monthLabel { | ||
margin: 0 10px; | ||
font-size: 32px; | ||
.downloadButton:focus { | ||
outline: none; | ||
} |
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