-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.css
105 lines (91 loc) · 1.87 KB
/
menu.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
body {
font-family: 'Roboto', sans-serif;
background-color: #FAFAFA; /* White background */
color: #130912; /* Black text */
margin: 0;
padding: 0;
}
.menu-wrapper {
width: 60%;
margin: 0 auto;
padding-top: 8vh;
text-align: center;
}
h1 {
color: #130912; /* Black */
font-weight: 500;
font-size: 2.5em;
margin-bottom: 10px;
}
p.desc, p.desc2 {
color: #130912;
font-size: 1.1em;
margin: 0;
}
p.desc2 {
font-style: italic;
margin-top: 10px;
font-size: 15px !important;
}
p a {
text-decoration: none;
color: #E77917; /* Orange link */
border-bottom: 1px solid #E77917;
}
.footer {
font-size: 14px !important;
position: absolute;
bottom:0;
width: 10%;
left: 45%;
}
.game-box {
background-color: #FAFAFA; /* White background for boxes */
border: 1px solid #E77917; /* Orange border */
display: inline-block;
width: 40%;
padding: 20px;
margin: 20px 10px;
border-radius: 12px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.game-box h3 {
margin: 0;
color: #130912; /* Black */
font-weight: 500;
font-size: 1.5em;
}
.game-box a {
display: block;
background-color: #E77917; /* Orange button */
color: #FAFAFA; /* White text */
padding: 12px 0;
margin-top: 20px;
text-decoration: none;
border-radius: 8px;
font-weight: 500;
transition: all 0.3s ease;
}
.game-box a:hover {
background-color: #FAFAFA; /* White on hover */
color: #E77917; /* Orange text */
border: 1px solid #E77917;
}
/* Responsive Design */
@media screen and (max-width: 768px) {
.menu-wrapper {
width: 90%;
}
.game-box {
width: 80%;
margin-bottom: 30px;
}
}
@media screen and (max-width: 425px) {
h1 {
font-size: 1.8em;
}
.game-box {
width: 100%;
}
}