GameHub/styly/Hry.css

32 lines
475 B
CSS
Raw Normal View History

2024-04-21 17:42:29 +02:00
html, body {
2024-04-21 14:36:28 +02:00
background-image: url(https://w.wallha.com/ws/4/Vlw87L9q.png);
2024-04-21 15:05:15 +02:00
}
main.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 20px;
padding: 20px;
}
.category {
border: 1px solid #ccc;
padding: 20px;
}
.category h2 {
margin-top: 0;
}
.game {
margin-top: 20px;
text-align: center;
}
2024-04-21 18:07:45 +02:00
img {
display: block;
margin: 0 auto;
max-width: 100%;
2024-04-21 19:14:17 +02:00
height: 600;
2024-04-21 18:07:45 +02:00
border-radius: 10px;
2024-04-21 17:13:30 +02:00
}