-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
98 lines (84 loc) · 1.69 KB
/
Copy pathstyle.css
File metadata and controls
98 lines (84 loc) · 1.69 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(173, 171, 171);
}
.container {
width: 60%;
background: #fff;
padding: 35px;
border-radius: 10px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.container .heading{
color: orange;
margin-bottom: 50px;
text-align: center;
}
.container .input-field{
padding: 13px 20px 0;
position: absolute;
opacity: 0;
z-index: -99;
}
.container .content-box {
border: 1px solid #ccc;
padding: 20px;
border-radius: 10px;
}
.content-box .content {
margin-top: 10px;
padding: 5px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
border-top: 1px solid #ccc;
}
.content .result-details {
display: flex;
align-items: center;
justify-content: space-between;
width: calc(100% - 140px);
}
.result-details li{
display: flex;
list-style: none;
align-items: center;
}
.content button{
width: 90px;
padding: 8px 0px;
background-color: orange;
border-radius: 10px;
font-size: 16px;
cursor: pointer;
color: #fff;
border: none;
transition: transform 0.3s ease;
}
.content button:active{
transform: scale(0.97);
}
.typing-text span.active{
color: orange;
font-weight: 700;
}
.typing-text span.correct{
color: green;
}
.typing-text span.incorrect{
color: red;
border-bottom: 3px solid red;
}
::selection{
background-color: #ccc;
color: #fff;
}