-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathguess.css
42 lines (42 loc) · 936 Bytes
/
guess.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
body {
font-family: 'Press Start 2P', cursive;
text-align: center;
margin-top: 50px;
background-color: #0c0c0c;
}
h1 {
color: #f6f3f3;
}
#game-container {
margin-top:20px;
background-color:#fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(179, 177, 177, 0.902);
display: inline-block;
}
input[type="text"] {
padding: 10px;
font-size: 16px;
margin-top: 10px;
border-radius: 5px;
border: 1px solid #ccc;
}
button {
padding: 10px 20px;font-size: 16px;
background-color: #007bff;
color: white;border: none;
cursor: pointer;
margin-top: 10px;border-radius: 5px;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
}
.message {
margin-top: 20px;
font-size: 18px;
color: #333;
}
footer {
margin-top: 50px;background-color: #333;color: #fff;padding: 10px 0;position: fixed;bottom: 0;width: 100%;}