-
Notifications
You must be signed in to change notification settings - Fork 0
/
typing_game.css
72 lines (62 loc) · 1.19 KB
/
typing_game.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
.highlight-currentWord {
background-color: black;
}
.error {
border: 5px solid red;
}
h1{
text-shadow: 0 0 30px black;
color: white;
text-decoration: underline;
margin: 10px;
}
#info-para, #message, #quote{
text-shadow: 0 0 30px black;
text-align: center;
font-size: 35px;
margin: 30px;
}
#quote{
width: 800px;
}
#message{
padding: 10px;
margin-bottom: 20px;
}
#message, #info-para, #typed-value{
margin: 10px;
}
#typed-value{
width: 600px;
height: 50px;
background-color: #03010e8a;
border-radius: 10px;
box-shadow: 0 0 40px #d964e8;
color: white;
margin-top: -10px;
font-family: 'Poppins', sans-serif;
font-size: 25px;
padding: 10px;
}
html, body{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: 'Poppins', sans-serif;
font-size: 30px;
color: white;
}
html{
background-image: url('neon-background.jpg');
}
button{
box-shadow: 0px 0px 30px #af2beb;
font-size: 30px;
font-family: 'Poppins', sans-serif;
font-weight: bold;
padding: 0 20px 0 20px;
border-radius: 20px;
border: 3px solid black;
margin-top: 10px;
}