-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyling.css
106 lines (87 loc) · 1.78 KB
/
styling.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* body element*/
body{
/* font-family: 'Quattrocento Sans', sans-serif; */
background: url("images/aurora.jpg") no-repeat center center;
background-attachment: fixed; /* fixed image when scrolling up and down*/
background-size: cover;
color: white;
}
.meas_container{
background-color: rgba(236, 34, 202, .5);
}
.row{
font-size: 30px;
}
.title{
font-size: 14px;
}
.typingIcon{
height: 50px;
}
#content{
height: 120px;
margin: 10px auto;
background-color: rgba(255, 255, 255, .2);
font-size: 30px;
overflow: hidden;
padding: 0 5px;
line-height: 40px;
}
.change{
height: 25px;
font-size: 16px;
}
#input{
background-color: rgba(239, 37, 188, .3);
width: 100%;
font-size: 30px;
padding: 10px;
color: rgb(1, 226, 182);
}
.keyboard{
min-height: 200px; /* minimum height for small screens */
max-height: 300px; /* maximum height for small screens */
background: url(images/keyboard.jpeg) no-repeat center center;
background-size: contain;
margin-top: 10px;
}
.restart{
margin-top: 20px;
opacity: 0.5;
}
.btn-primary{
background: rgba(236, 34, 202, 0.5);
}
.btn-primary:focus, .btn-primary:active, .btn-primary:hover{
background: rgba(236, 34, 202, 0.8);
}
/* these for the icons under wpm, cpm, and accuracy, that changes depending on the typed words*/
.scoreDown,
.scoreUp{
border-radius: 5px;
padding: 5px;
font-size: 12px;
}
.scoreDown{
background: mediumvioletred;
}
.scoreUp{
background: greenyellow;
color: black;
}
.modal{
color: black;
}
.activeWord{
background-color: greenyellow;
border-radius: 5px;
}
.correctCharacter{
color: mediumblue;
}
.wrongCharacter{
color: mediumvioletred;
}
.result{
font-size: 20px;
}