-
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
104 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/* 基本設定 */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
background-color: #f7f7f7; | ||
color: #333; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.container { | ||
width: 80%; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #ffffff; | ||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); | ||
border-radius: 8px; | ||
margin-top: 40px; | ||
} | ||
|
||
header { | ||
text-align: center; | ||
margin-bottom: 40px; | ||
} | ||
|
||
header h1 { | ||
font-size: 2.5em; | ||
color: #d9534f; | ||
margin-bottom: 10px; | ||
} | ||
|
||
header p { | ||
font-size: 1.2em; | ||
color: #555; | ||
} | ||
|
||
.rules { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.rules h2 { | ||
font-size: 1.8em; | ||
color: #5bc0de; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.rules ol { | ||
padding-left: 20px; | ||
line-height: 1.8; | ||
} | ||
|
||
.rules li { | ||
font-size: 1.2em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.penalty { | ||
margin-bottom: 40px; | ||
} | ||
|
||
.penalty h2 { | ||
font-size: 1.8em; | ||
color: #f0ad4e; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.penalty p { | ||
font-size: 1.2em; | ||
color: #555; | ||
} | ||
|
||
.contact { | ||
margin-top: 40px; | ||
} | ||
|
||
.contact h2 { | ||
font-size: 1.8em; | ||
color: #5bc0de; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.contact p { | ||
font-size: 1.2em; | ||
color: #555; | ||
} | ||
|
||
strong { | ||
font-weight: bold; | ||
color: #d9534f; | ||
} | ||
|
||
/* モバイル対応 */ | ||
@media (max-width: 768px) { | ||
.container { | ||
width: 95%; | ||
} | ||
|
||
header h1 { | ||
font-size: 2em; | ||
} | ||
|
||
header p, .rules ol li, .penalty p, .contact p { | ||
font-size: 1em; | ||
} | ||
} |