-
Notifications
You must be signed in to change notification settings - Fork 0
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
18 additions
and
21 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 |
---|---|---|
|
@@ -4,27 +4,15 @@ | |
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Sesena games</title> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"> | ||
<style> | ||
body { | ||
background-color: #444444; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
} | ||
.grid-container { | ||
display: grid; | ||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | ||
gap: 20px; | ||
max-width: 1200px; | ||
background-color: #050505; | ||
padding: 20px; | ||
box-sizing: border-box; | ||
} | ||
.grid-item { | ||
background-color: #444444; | ||
background-color: #050505; | ||
border: none; | ||
overflow: hidden; | ||
border-radius: 8px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); | ||
} | ||
|
@@ -35,13 +23,22 @@ | |
</style> | ||
</head> | ||
<body> | ||
<div class="grid-container"> | ||
<div class="grid-item"> | ||
<iframe frameborder="0" src="https://itch.io/embed/2828672?bg_color=162116&fg_color=eeeeee&link_color=35ff20&border_color=363636" width="552" height="167"><a href="https://sesena0-0.itch.io/sesena-dino-battle">Sesena Dino Battle by Sesena0_0</a></iframe> | ||
</div> | ||
<div class="grid-item"> | ||
<iframe frameborder="0" src="https://itch.io/embed/2781391?bg_color=141d15&fg_color=eeeeee&link_color=1ad900&border_color=2d422c" width="552" height="167"><a href="https://sesena0-0.itch.io/taquins">Taquin's by Sesena0_0</a></iframe> | ||
<div class="container"> | ||
<div class="row row-cols-1 row-cols-md-2 g-4"> | ||
<div class="col"> | ||
<div class="grid-item"> | ||
<iframe frameborder="0" src="https://itch.io/embed/2828672?bg_color=162116&fg_color=eeeeee&link_color=35ff20&border_color=363636" width="552" height="167"><a href="https://sesena0-0.itch.io/sesena-dino-battle">Sesena Dino Battle by Sesena0_0</a></iframe> | ||
</div> | ||
</div> | ||
<div class="col"> | ||
<div class="grid-item"> | ||
<iframe frameborder="0" src="https://itch.io/embed/2781391?bg_color=141d15&fg_color=eeeeee&link_color=1ad900&border_color=2d422c" width="552" height="167"><a href="https://sesena0-0.itch.io/taquins">Taquin's by Sesena0_0</a></iframe> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script> | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |