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 530e69d commit 5daa797
Showing 1 changed file with 104 additions and 0 deletions.
104 changes: 104 additions & 0 deletions globalchat.css
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;
}
}

0 comments on commit 5daa797

Please sign in to comment.