Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions 1번 과제/1.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
.circle-container {
background-color: beige;
/* 코드 작성 */
display: flex;
flex-wrap: wrap;

}
.circle {
border-radius: 50%;
Expand All @@ -16,4 +19,9 @@
font-weight: bold;
font-size: 50px;
/* 코드 작성 */
display: flex;
justify-content: center;
align-items: center;


}
5 changes: 5 additions & 0 deletions 2번 과제/2.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ body {
display: flex;
flex-direction: column;
/* 코드 작성 */
flex-direction: row-reverse;


}

.box {
Expand All @@ -21,6 +24,8 @@ body {
justify-content: center;
align-items: center;
/* 코드 작성 */
flex-grow: 1;

}

.box-1 {
Expand Down
22 changes: 22 additions & 0 deletions 3번 과제/3.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,46 @@

#wrapper {
width: 700px;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-template-rows: 100px 200px;
}
.box {
padding: 15px;
color: #fff;
font-size: 20px;
font-weight: bold;
text-align: center;


}

.box1 {
background-color: #3689ff;
grid-column-start: 1;
grid-column-end: 3;
grid-row-start: 1;
grid-row-end: 2;
}
.box2 {
background-color: #00cf12;
grid-column-start: 1;
grid-column-end: 2;
grid-row-start: 2;
grid-row-end: 3;
}
.box3 {
background-color: #ff9019;
grid-column-start: 3;
grid-column-end: 4;
grid-row-start: 1;
grid-row-end: 2;

}
.box4 {
background-color: #ffd000;
grid-column-start: 3;
grid-column-end: 4;
grid-row-start: 2;
grid-row-end: 3;
}