Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
akiy2009 authored Dec 2, 2024
1 parent 660a582 commit 1b6eac4
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions Issue.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/* body の基本設定 */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
margin: 0;
padding: 0;
}

/* コンテンツを中央に配置 */
.container {
max-width: 800px;
margin: 40px auto;
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ヘッダー部分のスタイル */
h1 {
color: #e74c3c;
font-size: 2.5em;
text-align: center;
}

/* 本文のパラグラフ */
p {
font-size: 16px;
line-height: 1.8;
margin-bottom: 20px;
}

/* 詳細情報部分 */
.details {
margin-top: 30px;
}

.details ul {
list-style-type: none;
padding-left: 0;
}

.details li {
margin-bottom: 10px;
}

/* ボタンスタイル */
.cta {
background-color: #e74c3c;
color: white;
padding: 15px;
font-size: 18px;
text-align: center;
margin-top: 40px;
border-radius: 5px;
text-decoration: none;
}

.cta:hover {
background-color: #c0392b;
}

/* フッター部分 */
.footer {
font-size: 14px;
color: #777;
text-align: center;
margin-top: 50px;
}

0 comments on commit 1b6eac4

Please sign in to comment.