-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
166 lines (134 loc) · 2.53 KB
/
style.css
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
css
/* Reset some default styles */
body, h1, h2, h3, p, ul {
margin: 0;
padding: 0;
}
/* Basic styling */
body {
font-family: 'Gotham';
background-color: #040D12;
}
header {
color: #fff;
padding: 20px;
}
nav ul {
list-style-type: none;
}
nav ul li {
display: inline;
margin-right: 10px;
}
nav ul li a {
color: #fff;
text-decoration: none;
}
main {
max-width: 960px;
margin: 20px auto;
padding: 20px;
}
section {
margin-bottom: 40px;
}
h2 {
margin-bottom: 20px;
font-size: 24px;
color: #333;
}
.game {
background-color: #fff;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
height: 50%;
width: 50%;
}
.game img {
width: 100%;
border-radius: 8px;
margin-bottom: 10px;
}
.game img:hover{
box-shadow: 5px 5px 2px 3px #000000;
}
.game h3 {
font-size: 20px;
margin-bottom: 10px;
color: #333;
}
.game p {
color: #666;
margin-bottom: 10px;
}
.game a {
display: inline-block;
color: #fff;
padding: 8px 16px;
text-decoration: none;
border-radius: 4px;
transition: background-color 0.3s ease;
}
/* Colors */
header {
background-color: #183D3D;
text-shadow: 3px 3px 6px #000000;
}
nav ul li a {
color: #fff;
}
section {
background-color: #f9f9f9;
}
.game {
background-color: #000000;
border: 2px solid #ccc;
}
.hr{
border-style: solid;
border-radius: 5px;
border-width:1.5px ;
border-color: #ffffff;
display: inline-block;
text-shadow: 0px 0px 6px #000000;
}
.hr:hover{
background-color:#5C8374 ;
display: inline-block;
transition: background-color 0.3s ease;
box-shadow: 2px 2px 2px 2px #000000;
text-shadow: 3px 3px 6px #000000;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.game:hover {
background-color: #183D3D;
transition: background-color 0.3s ease;
box-shadow: 5px 5px 2px 3px #93B1A6;
text-shadow: 3px 3px 6px #000000;
}
/* Responsive */
@media only screen and (max-width: 600px) {
header {
padding: 10px;
}
nav ul li {
display: block;
margin-bottom: 10px;
}
main {
padding: 10px;
}
.game img {
margin-bottom: 5px;
}
footer {
padding: 5px;
}
}