-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
96 lines (83 loc) · 1.77 KB
/
styles.css
File metadata and controls
96 lines (83 loc) · 1.77 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
:root {
--background-dark: #2e2e2e;
--text-light: #ffffff;
--header-dark: #2e2e2e;
--button-dark: #000f9f;
--button-hover-dark: #030f8a;
--accent-color: #e1251b;
}
body {
background-color: var(--background-dark);
color: var(--text-light);
font-family: "London Tube", sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
transition: background-color 0.3s ease, color 0.3s ease;
}
header {
background-color: var(--header-dark);
color: var(--text-light);
padding: 20px;
text-align: center;
border-bottom: 5px solid var(--accent-color);
transition: background-color 0.3s ease, color 0.3s ease;
}
header img {
height: 60px;
vertical-align: middle;
}
header h1 {
display: inline;
margin-left: 10px;
vertical-align: middle;
font-size: 24px;
}
main {
flex: 1;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
text-align: center;
}
.game-buttons {
margin-top: 20px;
}
.game-buttons a {
text-decoration: none;
margin: 10px;
}
.game-buttons a button {
padding: 10px 20px;
background-color: var(--button-dark);
border: none;
color: var(--text-light);
font-size: 18px;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
font-family: "London Tube", sans-serif; /* Apply London Tube font */
}
.game-buttons a button:hover {
background-color: var(--button-hover-dark);
}
footer {
background-color: var(--header-dark);
color: var(--text-light);
text-align: center;
padding: 10px;
border-top: 5px solid var(--accent-color);
margin-top: auto;
transition: background-color 0.3s ease, color 0.3s ease;
}
footer p {
margin: 0;
}
footer a {
color: var(--text-light);
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}