Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Rikka3 authored May 30, 2024
1 parent 232979d commit 56928b0
Showing 1 changed file with 14 additions and 7 deletions.
21 changes: 14 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,24 +43,31 @@
color: #fff; /* Text color */
}

.box p {
font-size: 1.5em; /* Adjust font size for text */
text-align: center; /* Center text horizontally within box */
margin-top: 10px; /* Add top margin for spacing */
.box p.title {
font-size: 1.5em; /* Adjust title font size */
margin-bottom: 10px; /* Add spacing between title and description */
}

.box p.description {
font-size: 1em; /* Adjust description font size (smaller than title) */
color: yellow; /* Set description text color to yellow */
}
</style>
</head>
<body>
<h1>Mods Installer</h1>
<div class="box-container">
<div class="box">
<p>Mods</p>
<p class="title">Mods</p>
<p class="description">Essential game modifications</p>
</div>
<div class="box">
<p>Optional Mods</p>
<p class="title">Optional Mods</p>
<p class="description">Enhance your gameplay (not required)</p>
</div>
<div class="box">
<p>Usage</p>
<p class="title">Usage</p>
<p class="description">Instructions on using the installer</p>
</div>
</div>
</body>
Expand Down

0 comments on commit 56928b0

Please sign in to comment.