-
Notifications
You must be signed in to change notification settings - Fork 19
/
styles.css
99 lines (84 loc) · 1.46 KB
/
styles.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
body {
display: flex;
flex-direction: column;
min-height: 100vh;
margin: 0;
background-color: #1a1a1a;
color: #ffffff;
font-family: 'Segoe UI', Arial, sans-serif;
line-height: 1.6;
}
#game-index {
max-width: 900px;
margin: 2rem auto;
padding: 2rem;
background-color: #2a2a2a;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}
h1 {
text-align: center;
color: #4CAF50;
font-size: 2.5rem;
margin-bottom: 2rem;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
margin-bottom: 1rem;
transition: transform 0.2s ease;
}
li:hover {
transform: translateX(10px);
}
a {
display: block;
padding: 1rem 1.5rem;
background-color: #333;
color: #fff;
text-decoration: none;
border-radius: 8px;
border: 1px solid #444;
transition: all 0.3s ease;
}
a:hover {
background-color: #444;
border-color: #4CAF50;
}
.status-success {
color: #4CAF50;
}
.status-warning {
color: #FFC107;
}
.status-error {
color: #f44336;
}
.game-status {
font-size: 0.9rem;
margin-left: 0.5rem;
opacity: 0.9;
}
footer {
text-align: center;
padding: 1rem;
margin-top: auto;
background-color: #2a2a2a;
color: #888;
}
@media (max-width: 768px) {
#game-index {
margin: 1rem;
padding: 1rem;
}
h1 {
font-size: 2rem;
}
a {
padding: 0.8rem 1rem;
}
}