diff --git a/index.html b/index.html index 5f488f60..62df7414 100644 --- a/index.html +++ b/index.html @@ -1106,6 +1106,23 @@

本書の感想

面白くてとても助かっています。

わかりやすいです。githubのUIが変わっているので改訂版頑張って出してください!

はじめてのPull Request(2023年12月19日)

+
+

業務で苦戦しないように、GitHubを改めてはじめからしっかりと学習できました。本当にありがとうございます!

+ + + +

↑最新のコメント

正誤情報など

技術評論社Webサイト内の本書のサポートページに掲載しています。

diff --git a/stylesheets/stylesheet.css b/stylesheets/stylesheet.css index e755d340..c8653754 100644 --- a/stylesheets/stylesheet.css +++ b/stylesheets/stylesheet.css @@ -453,3 +453,42 @@ Add border: 1px; padding: 10px; } + + .link-card { + margin-top: 15px; + border: 1px solid #e1e4e8; + border-radius: 8px; + overflow: hidden; + transition: box-shadow 0.3s ease; + cursor: pointer; +} + +.link-card:hover { + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); +} + +.link-card-content { + display: flex; + align-items: center; + padding: 12px; + background-color: #fff; +} + +.link-card-icon { + width: 40px; + height: 40px; + margin-right: 12px; +} + +.link-card-text h3 { + font-size: 16px; + font-weight: bold; + color: #0366d6; + margin: 0; +} + +.link-card-text p { + font-size: 14px; + color: #586069; + margin: 0; +}