-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
81 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,116 +1,141 @@ | ||
/* 全体のスタイル */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #f9f9f9; | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f9; | ||
color: #333; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
|
||
/* ヘッダー画像 */ | ||
header img { | ||
width: 100%; | ||
height: auto; | ||
/* ヘッダー部分 */ | ||
header { | ||
background-color: #2c3e50; | ||
color: #fff; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
|
||
/* ナビゲーションメニュー */ | ||
.gnavi__lists { | ||
list-style: none; | ||
/* ナビゲーション */ | ||
ul.gnavi__lists { | ||
list-style-type: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
justify-content: center; | ||
background-color: #4CAF50; | ||
background-color: #34495e; | ||
} | ||
|
||
.gnavi__list { | ||
margin: 10px; | ||
margin: 0 15px; | ||
} | ||
|
||
.gnavi__list a { | ||
color: white; | ||
text-decoration: none; | ||
padding: 10px 15px; | ||
font-size: 18px; | ||
font-size: 16px; | ||
} | ||
|
||
.gnavi__list a:hover { | ||
text-decoration: underline; | ||
} | ||
|
||
/* ボット導入リンク */ | ||
.BOT_invitation { | ||
background-color: #007BFF; | ||
color: white; | ||
color: #fff; | ||
background-color: #27ae60; | ||
padding: 10px 20px; | ||
text-decoration: none; | ||
font-size: 16px; | ||
border-radius: 5px; | ||
display: inline-block; | ||
margin: 10px 0; | ||
text-decoration: none; | ||
margin-left: 20px; | ||
} | ||
|
||
.BOT_invitation:hover { | ||
background-color: #0056b3; | ||
background-color: #2ecc71; | ||
} | ||
|
||
/* NEWS セクション */ | ||
.NEWS_list { | ||
background-color: #f1f1f1; | ||
padding: 20px; | ||
/* ニュースセクション */ | ||
section.NEWS_list { | ||
padding: 40px; | ||
background-color: #ecf0f1; | ||
text-align: center; | ||
} | ||
|
||
.NEWS_tatle { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.NEWS_text { | ||
font-size: 16px; | ||
margin: 5px 0; | ||
font-size: 18px; | ||
color: #7f8c8d; | ||
} | ||
|
||
/* サポートサーバーリンクを中央に配置 */ | ||
.support-server { | ||
margin-top: 30px; | ||
/* Gakusei BOTの特徴 */ | ||
h1[name="develope"] { | ||
font-size: 28px; | ||
color: #2c3e50; | ||
text-align: center; | ||
margin-top: 40px; | ||
} | ||
|
||
.support-link { | ||
font-size: 20px; | ||
color: #fff; | ||
background-color: #FF6F61; | ||
padding: 12px 20px; | ||
border-radius: 8px; | ||
text-decoration: none; | ||
transition: background-color 0.3s ease; | ||
ul { | ||
text-align: center; | ||
padding-left: 0; | ||
} | ||
|
||
.support-link:hover { | ||
background-color: #ff4d38; | ||
ul li { | ||
font-size: 18px; | ||
display: inline-block; | ||
margin: 10px 15px; | ||
} | ||
|
||
/* 概要セクション */ | ||
section ul { | ||
list-style-type: none; | ||
padding: 0; | ||
section[name="概要"] { | ||
background-color: #ecf0f1; | ||
padding: 30px; | ||
} | ||
|
||
section ul li { | ||
font-size: 18px; | ||
margin-bottom: 10px; | ||
h1[name="概要"] { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
text-align: center; | ||
} | ||
|
||
h1, h3 { | ||
font-size: 28px; | ||
margin: 20px 0; | ||
/* フッター */ | ||
h3 { | ||
font-size: 18px; | ||
color: #7f8c8d; | ||
text-align: center; | ||
margin-top: 40px; | ||
} | ||
|
||
/* 著作権表示 */ | ||
h4 { | ||
font-size: 14px; | ||
color: #777; | ||
margin-top: 20px; | ||
color: #7f8c8d; | ||
text-align: center; | ||
margin-top: 40px; | ||
} | ||
|
||
/* フッター */ | ||
footer { | ||
padding: 20px 0; | ||
background-color: #333; | ||
color: white; | ||
/* サポートサーバーリンクを中央に配置 */ | ||
.support-server { | ||
margin-top: 30px; | ||
text-align: center; | ||
} | ||
|
||
.support-link { | ||
font-size: 20px; | ||
color: #fff; | ||
background-color: #FF6F61; | ||
padding: 12px 20px; | ||
border-radius: 8px; | ||
text-decoration: none; | ||
transition: background-color 0.3s ease, transform 0.2s ease; | ||
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.support-link:hover { | ||
background-color: #ff4d38; | ||
transform: translateY(-2px); | ||
} |