-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (59 loc) · 1.16 KB
/
Copy pathstyle.css
File metadata and controls
70 lines (59 loc) · 1.16 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
body {
background: linear-gradient(45deg, #1e3c72, #2a5298);
color: white;
font-family: Arial, sans-serif;
text-align: center;
margin-top: 50px;
}
input {
font-size: 18px;
padding: 10px;
margin-top: 20px;
border: 2px solid #fff;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.2);
color: white;
outline: none;
}
input::placeholder {
color: rgba(255, 255, 255, 0.7);
}
button {
display: inline-block;
background-color: #6200ea;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background-color: #3700b3 !important;
transform: scale(1.05) !important;
}
#word {
font-size: 24px;
margin-bottom: 20px;
}
#score, #time {
font-size: 20px;
margin-top: 10px;
}
#highscore {
font-size: 20px;
color: lightgreen;
margin-top: 10px;
}
#difficulty {
font-size: 18px;
font-weight: bold;
}
.correct {
background-color: limegreen;
transition: background-color 0.2s ease-in-out;
}
.wrong {
background-color: lightcoral;
transition: background-color 0.2s ease-in-out;
}