-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (64 loc) · 1.4 KB
/
style.css
File metadata and controls
74 lines (64 loc) · 1.4 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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode';
background-image: url(https://catherineasquithgallery.com/uploads/posts/2023-02/1676568561_catherineasquithgallery-com-p-bogatii-zelenii-fon-103.jpg);
background-size: cover;
background-attachment: fixed;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: white;
}
.grid {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background-color: rgba(0, 0, 0, 0.7);
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
header h1 {
color: goldenrod;
}
main {
display: flex;
flex-direction: column;
align-items: center;
}
#message-el {
font-style: italic;
}
.game-button {
width: 150px;
height: 40px;
background-color: goldenrod;
color: rgb(7, 95, 7);
font-weight: 900;
border: none;
border-radius: 3px;
margin: 10px 0;
cursor: pointer;
}
.game-button:hover {
background-color: darkgoldenrod;
}
footer a {
color: goldenrod;
font-size: 20px;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
p {
font-size: 20px;
margin: 5px 0;
}
.button-container {
display: flex;
gap: 10px;
}