-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (78 loc) · 1.38 KB
/
style.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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100%;
padding: 20px;
background-color: #f0eec3;
}
.game-container {
text-align: center;
max-width: 600px;
margin: 0 auto;
height: 100vh;
width: 100%;
}
h1 {
font-weight: bold;
font-size: 34px;
color: #fd6506;
}
.hangman-image {
width: 400px;
height: 400px;
margin-bottom: 20px;
}
.word-display {
font-size: 24px;
letter-spacing: 10px;
margin: 20px 0;
padding: 50px;
}
.alphabet-buttons {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}
.alphabet-buttons button {
background: #fd6506;
color: #fff;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer;
font-size: 20px;
font-weight: bold;
justify-content: center;
align-items: center;
}
.alphabet-buttons button:disabled {
background: rgb(201, 189, 189);
cursor: not-allowed;
}
.guesses-left,
.message {
font-size: 22px;
font-weight: bold;
color: rgb(207, 12, 12);
margin: 10px 0;
padding: 20px;
}
.reset-button {
background: #fd6506;
justify-content: center;
align-items: center;
color: white;
font-weight: bold;
border: none;
padding: 10px 20px;
border-radius: 10px;
cursor: pointer;
font-size: 20px;
margin-top: 30px;
margin-left: 210px;
}
/*# sourceMappingURL=style.css.map */