-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
79 lines (67 loc) · 1.19 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
* {
margin: 0;
padding: 0;
font-family: jost, sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
height: 64vh;
background-color: #072541;
color: white;
}
.container {
width: 90%;
padding: 10px;
position: absolute;
top: 100px;
}
.paraArea {
width: 100%;
text-align: center;
font-size: 23px;
letter-spacing: 5px;
}
.resultSection {
margin-top: 26px;
}
.resultSection ul {
display: flex;
justify-content: center;
align-items: center;
position: relative;
padding: 15px;
border-top: 2px solid;
}
.resultSection ul li {
padding-right: 50px;
font-size: 20px;
}
li {
list-style: none;
}
#input-feild {
outline: none;
opacity: 0;
width: 1px;
}
.correct {
/* border-bottom: 1px solid green; */
/* color: rgb(175, 211, 171); */
color: yellow;
}
.incorrect {
color: red;
}
button {
padding: 7px;
border: none;
cursor: pointer;
width: 80px;
background:#5272F2;
color: rgb(255, 255, 255);
border-radius: 4px;
font-size: 16px;
}