This repository has been archived by the owner on Aug 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/hackersground-kr/hg-crescen…
- Loading branch information
Showing
14 changed files
with
161 additions
and
68 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
Binary file not shown.
Binary file not shown.
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
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 +1,48 @@ | ||
.box { | ||
background-color: #895d3c; | ||
width: 100%; | ||
height: 1px; | ||
height: 15px; | ||
} | ||
|
||
.whatDo id { | ||
.container { | ||
display: flex; | ||
flex-direction: column; /* 세로 방향으로 배치 */ | ||
align-items: center; /* 수평 가운데 정렬 */ | ||
height: 100vh; /* 전체 화면 높이 */ | ||
} | ||
.var { | ||
margin-top: 22px; | ||
} | ||
h4 { | ||
font-size: 24px; | ||
color: #714c2f; | ||
margin-right: 150px; | ||
margin-bottom: 0; | ||
} | ||
p { | ||
color: #895d3c; | ||
padding-right: 60px; | ||
margin-top: 5px; | ||
} | ||
h6 { | ||
font-size: 20px; | ||
color: #523522; | ||
font-weight: bold; | ||
margin-bottom: 6rem; | ||
color: #714c2f; | ||
margin-right: 200px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.whatDo { | ||
display: grid; | ||
grid-template-columns: repeat(3, 1fr); /* 3 columns */ | ||
grid-template-rows: repeat(2, 1fr); /* 2 rows */ | ||
gap: 20px; /* Space between buttons */ | ||
width: 100%; /* Allow the grid to take full width of its container */ | ||
max-width: 600px; /* Limit the maximum width */ | ||
margin: 20px 0; /* Add vertical spacing */ | ||
.HStack { | ||
width: 100%; | ||
} | ||
.image-button { | ||
background: none; | ||
border: none; | ||
padding: 0; | ||
margin: 0 5px; /* 이미지 버튼 간의 간격 설정 */ | ||
cursor: pointer; | ||
} | ||
|
||
.whatDo input[type="button"] { | ||
width: 100%; | ||
.image-button img { | ||
display: block; | ||
} | ||
.p7 { | ||
margin-top: 50px; | ||
} |
Oops, something went wrong.