-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
53 lines (46 loc) · 811 Bytes
/
style.css
File metadata and controls
53 lines (46 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
header {
background-color: #333;
color: white;
padding: 10px;
text-align: center;
}
.search-and-categories{
display: flex;
flex-direction: row;
gap: 10px;
justify-content: center;
}
main {
padding: 20px;
}
#game-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 20px;
}
.game-item {
background-color: white;
border: 1px solid #ddd;
padding: 15px;
border-radius: 5px;
text-align: center;
}
.game-item a {
text-decoration: none;
color: #007bff;
}
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
position: fixed;
bottom: 0;
width: 100%;
}