-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
129 lines (114 loc) 路 2.25 KB
/
Copy pathstyles.css
File metadata and controls
129 lines (114 loc) 路 2.25 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body {
background-color: #121212;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
}
footer {
background-color: #2f3b4a;
color: #ffdd00;
text-align: center;
font-size: 1.2em;
font-weight: 600;
position: fixed;
bottom: 0;
width: 100%;
border-radius: 0 0 10px 10px;
box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}
footer a {
color: #ff7f00;
text-decoration: none;
transition: color 0.3s ease;
}
footer a:hover {
color: #ff4500;
}
#welcome {
text-align: center;
}
#welcome h1 {
font-size: 3em;
color: #f2d900;
margin-bottom: 20px;
}
#welcome span {
color: #ff007f;
}
#games-cards {
display: flex;
gap: 30px;
flex-wrap: wrap;
justify-content: center;
margin-top: 50px;
}
.game-card {
background: linear-gradient(135deg, #1d1d1d, #333333);
padding: 15px;
width: max-content;
height: max-content;
text-align: center;
border-radius: 10px;
cursor: pointer;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.game-card:hover {
transform: translateY(-10px);
box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
}
.game-card img {
width: max-content;
height: 150px;
object-fit: cover;
border-radius: 10px;
}
.game-card h3 {
margin-top: 10px;
font-size: 1.5em;
color: #fff;
}
button {
background-color: #ff007f;
border: none;
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #f2d900;
}
.about-card {
display: flex;
justify-content: center;
gap: 20px;
flex-wrap: wrap;
padding: 20px;
}
.card {
background: linear-gradient(135deg, #1d1d1d, #333333);
border: 1px solid #ddd;
border-radius: 15px;
padding: 20px;
width: 300px;
text-align: left;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 0 20px rgba(255, 0, 127, 0.7);
cursor: pointer;
}
.card img {
width: 100%;
height: auto;
border-radius: 15px;
}
.card h2 {
margin-top: 10px;
font-size: 18px;
color: #fff;
}