Skip to content

Commit

Permalink
GDSC-University-of-Seoul#231 테이블 스타일 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
custardcream98 committed Nov 11, 2022
1 parent ea42be2 commit e821ad7
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion assets/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,29 @@

/* We need to add display:inline in order to align the '>>' of the 'read more' link */
.post-excerpt p {
display:inline;
display: inline;
}

/* 테이블 스타일 */
table {
margin: 10px 0 5px;
thead {
border-bottom: 2px solid gray;
tr {
background-color: #f1c040;
color: #ffffff;
text-align: left;
}
}
tbody tr {
border-bottom: 1px solid #dddddd;
}
th {
padding: 12px 15px;
}
td {
padding: 12px 8px;
}
}

// Import partials from `sass_dir` (defaults to `_sass`)
Expand Down

0 comments on commit e821ad7

Please sign in to comment.