-
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
56 additions
and
84 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,144 +1,116 @@ | ||
/* 全体のスタイル */ | ||
body { | ||
font-family: Arial, sans-serif; | ||
background-color: #f4f4f9; | ||
color: #333; | ||
font-family: 'Arial', sans-serif; | ||
background-color: #f9f9f9; | ||
margin: 0; | ||
padding: 0; | ||
text-align: center; | ||
} | ||
|
||
/* ヘッダー部分 */ | ||
header { | ||
background-color: #2c3e50; | ||
color: #fff; | ||
padding: 20px; | ||
text-align: center; | ||
/* ヘッダー画像 */ | ||
header img { | ||
width: 100%; | ||
height: auto; | ||
} | ||
|
||
/* ナビゲーション */ | ||
ul.gnavi__lists { | ||
list-style-type: none; | ||
/* ナビゲーションメニュー */ | ||
.gnavi__lists { | ||
list-style: none; | ||
padding: 0; | ||
margin: 0; | ||
display: flex; | ||
justify-content: center; | ||
background-color: #34495e; | ||
background-color: #4CAF50; | ||
} | ||
|
||
.gnavi__list { | ||
margin: 0 15px; | ||
margin: 10px; | ||
} | ||
|
||
.gnavi__list a { | ||
color: white; | ||
text-decoration: none; | ||
font-size: 16px; | ||
} | ||
|
||
.gnavi__list a:hover { | ||
text-decoration: underline; | ||
padding: 10px 15px; | ||
font-size: 18px; | ||
} | ||
|
||
/* ボット導入リンク */ | ||
.BOT_invitation { | ||
color: #fff; | ||
background-color: #27ae60; | ||
background-color: #007BFF; | ||
color: white; | ||
padding: 10px 20px; | ||
border-radius: 5px; | ||
text-decoration: none; | ||
margin-left: 20px; | ||
font-size: 16px; | ||
border-radius: 5px; | ||
display: inline-block; | ||
margin: 10px 0; | ||
} | ||
|
||
.BOT_invitation:hover { | ||
background-color: #2ecc71; | ||
background-color: #0056b3; | ||
} | ||
|
||
/* ニュースセクション */ | ||
section.NEWS_list { | ||
padding: 40px; | ||
background-color: #ecf0f1; | ||
text-align: center; | ||
/* NEWS セクション */ | ||
.NEWS_list { | ||
background-color: #f1f1f1; | ||
padding: 20px; | ||
} | ||
|
||
.NEWS_tatle { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.NEWS_text { | ||
font-size: 18px; | ||
color: #7f8c8d; | ||
font-size: 16px; | ||
margin: 5px 0; | ||
} | ||
|
||
.support-button { | ||
/* サポートサーバーリンクを中央に配置 */ | ||
.support-server { | ||
margin-top: 30px; | ||
text-align: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.support-button button { | ||
padding: 10px 20px; | ||
font-size: 16px; | ||
background-color: #4CAF50; | ||
color: white; | ||
border: none; | ||
border-radius: 5px; | ||
cursor: pointer; | ||
} | ||
|
||
.support-button button:hover { | ||
background-color: #45a049; | ||
.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; | ||
} | ||
|
||
/* Gakusei BOTの特徴 */ | ||
h1[name="develope"] { | ||
font-size: 28px; | ||
color: #2c3e50; | ||
text-align: center; | ||
margin-top: 40px; | ||
.support-link:hover { | ||
background-color: #ff4d38; | ||
} | ||
|
||
ul { | ||
padding: 0; | ||
/* 概要セクション */ | ||
section ul { | ||
list-style-type: none; | ||
text-align: center; | ||
padding: 0; | ||
} | ||
|
||
ul li { | ||
section ul li { | ||
font-size: 18px; | ||
margin: 10px 0; | ||
} | ||
|
||
/* 概要セクション */ | ||
section[name="概要"] { | ||
background-color: #ecf0f1; | ||
padding: 30px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
h1[name="概要"] { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
text-align: center; | ||
h1, h3 { | ||
font-size: 28px; | ||
margin: 20px 0; | ||
} | ||
|
||
ul li { | ||
font-size: 18px; | ||
text-align: center; | ||
margin: 10px 0; | ||
h4 { | ||
font-size: 14px; | ||
color: #777; | ||
margin-top: 20px; | ||
} | ||
|
||
/* フッター */ | ||
h3 { | ||
font-size: 18px; | ||
color: #7f8c8d; | ||
text-align: center; | ||
margin-top: 40px; | ||
footer { | ||
padding: 20px 0; | ||
background-color: #333; | ||
color: white; | ||
} | ||
|
||
/* 著作権表示 */ | ||
h25 { | ||
font-size: 14px; | ||
color: #7f8c8d; | ||
text-align: center; | ||
margin-top: 40px; | ||
} |