-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
67 lines (60 loc) · 1.17 KB
/
Copy pathstyles.css
File metadata and controls
67 lines (60 loc) · 1.17 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
/* styles.css */
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
}
#introScreen {
background-image: url('images/FrontPage.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
}
#game {
margin: 50px auto;
width: 90%;
max-width: 500px;
padding: 20px;
border: 1px solid #ccc;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#gameScreen, #resultScreen {
display: none;
}
button {
width: 100%;
padding: 15px;
margin: 10px 0;
border: none;
background-color: #007BFF;
color: white;
cursor: pointer;
border-radius: 5px;
font-size: 18px;
}
button:hover {
background-color: #0056b3;
}
@media (min-width: 600px) {
button {
width: auto;
font-size: 24px;
}
}
.start-button {
padding: 10px 20px;
font-size: 16px;
border: none;
background-color: #007BFF;
color: white;
cursor: pointer;
border-radius: 5px;
}
.start-button:hover {
background-color: #0056b3;
}