-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (39 loc) · 742 Bytes
/
style.css
File metadata and controls
39 lines (39 loc) · 742 Bytes
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
body {
background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
font-family: 'Arial', sans-serif;
text-align: center;
color: white;
margin: 0;
padding: 0;
}
.container {
padding: 50px;
}
input {
padding: 12px;
width: 220px;
border: 2px solid #ff6b81;
border-radius: 10px;
font-size: 18px;
}
.button {
padding: 15px;
border: none;
border-radius: 10px;
margin: 5px;
color: white;
font-size: 18px;
cursor: pointer;
transition: 0.3s;
}
.guess-btn { background: #ff4757; }
.help-btn { background: #1e90ff; }
.reset-btn { background: #44bd32; }
.button:hover {
transform: scale(1.1);
}
footer {
margin-top: 30px;
font-size: 14px;
opacity: 0.7;
}