-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
55 lines (46 loc) · 845 Bytes
/
styles.css
File metadata and controls
55 lines (46 loc) · 845 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
54
55
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
justify-content: center;
align-items: center;
text-align: center;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.btn {
display: inline-block;
padding: 12px 30px;
background-color: #009474;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.featured-games {
padding: 20px 0;
}
.game-card {
background-color: #f1f1f1;
padding: 20px;
border-radius: 10px;
margin-bottom: 20px;
}
.game-card img {
max-width: 50%;
border-radius: 20px;
}
.game-card h2 {
margin-top: 10px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
}
footer p {
margin: 0;
}