-
Notifications
You must be signed in to change notification settings - Fork 0
/
typingmaster.css
73 lines (64 loc) · 1.27 KB
/
typingmaster.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
* {
padding: 0;
margin: 0%;
box-sizing: border-box;
background: rgb(235 225 225);
}
.main {
display: flex;
align-content: center;
justify-content: center;
align-items: center;
background: rgb(235 225 225);
}
.centerBody {
display: flex;
flex-direction: column;
/* border: 1px solid red; */
width: 1100px;
height: 100vh;
align-items: center;
padding: 40px;
box-shadow: 1px 1px 5px 10px rgb(209 201 201);
}
#heading {
padding: 20px;
text-transform: capitalize;
margin-bottom: 30px;
color: black;
text-shadow: 1px 2px 3px crimson;
font-size: 2.1rem;
}
#msg {
color: crimson;
text-shadow: 1px 1px 1px rgb(8, 8, 8);
text-transform: capitalize;
}
#msgs {
color: crimson;
}
#myWords {
background: #444;
padding: 20px 20px;
font-size: 1.2rem;
border: 8px solid rgb(221, 132, 150);
box-sizing: 0 0 1px rgba(0, 0, 0, 0.2);
color: white;
outline: none;
border-radius: 20px;
width: 100%;
}
button {
border: none;
background-color: #2f3336;
color: rgb(221, 132, 150);
font-size: 1.2rem;
width: 150px;
height: 55px;
border-radius: 10px;
margin-top: 20px;
cursor: pointer;
}
button:hover {
background-color: #213c4e;
}