Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
Taka-bow authored Sep 24, 2024
1 parent 605911c commit 3e0c20b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,16 @@
padding: 20px;
}

/* サムネイル画像のスタイル */
.thumbnail {
width: 100%; /* 親要素の幅に合わせる */
max-width: 150px; /* サムネイルの最大幅を150pxに制限 */
height: auto; /* アスペクト比を維持して高さを自動設定 */
display: block; /* ブロック要素として扱い、他の要素と独立させる */
margin: 10px auto; /* 上下に10pxのマージンを設定し、中央揃え */
border-radius: 5px; /* 角を丸くする(任意) */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
.container {
Expand Down

0 comments on commit 3e0c20b

Please sign in to comment.