Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add my impression #1882

Open
wants to merge 1 commit into
base: gh-pages
Choose a base branch
from
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
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1106,6 +1106,23 @@ <h3>本書の感想</h3>
<p class="impression">面白くてとても助かっています。</p>
<p class="impression">わかりやすいです。githubのUIが変わっているので改訂版頑張って出してください!</p>
<p class="impression">はじめてのPull Request(2023年12月19日)</p>
<div class="impression">
<p>業務で苦戦しないように、GitHubを改めてはじめからしっかりと学習できました。本当にありがとうございます!</p>

<!-- LinkCardをここに追加 -->
<div id="link-card" class="link-card">
<a href="https://github.com/ryudedev" target="_blank" rel="noopener noreferrer">
<div class="link-card-content">
<!-- 自身のprofile画像を出力 -->
<img src="https://avatars.githubusercontent.com/u/90295010?v=4" alt="GitHub Logo" class="link-card-icon">
<div class="link-card-text">
<h3>Ryudedev Profile</h3>
<p>Visit ryudedev's GitHub profile</p>
</div>
</div>
</a>
</div>
</div>
<p >↑最新のコメント</p>
<h3>正誤情報など</h3>
<p>技術評論社Webサイト内の<a href="http://gihyo.jp/book/2014/978-4-7741-6366-6/support">本書のサポートページ</a>に掲載しています。</p>
Expand Down
39 changes: 39 additions & 0 deletions stylesheets/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}