-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.css
122 lines (105 loc) · 2.39 KB
/
page.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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
@import url("https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap");
.app-container {
background-image: linear-gradient(to right, #f3eaff, #dac0ff);
min-height: 100vh;
}
.container {
padding: 30px 10px 30px 12px;
max-width: 800px;
}
.heading-speed-test {
color: #690cb0;
font-family: "Roboto";
font-size: 42px;
font-weight: 700;
}
.sub-heading {
color: #3e4c59;
font-size: 25px;
font-family: "Roboto";
font-weight: 500;
margin-top: 10px;
}
.time-container {
display: flex;
flex-direction: row;
align-items: center;
}
.image-class {
width: 50px;
height: 50px;
margin-right: 40px;
}
.display-time {
font-size: 35px;
font-weight: 700;
color: #3e4c59;
font-family: "Roboto";
}
.seconds-text {
font-size: 20px;
font-weight: 700;
color: #3e4c59;
font-family: "Roboto";
margin-left: 8px;
}
.text-container {
border: 1px solid #9aa5b1;
padding: 20px;
border-radius: 15px;
margin-top: 25px;
background-color: #f2ebfe;
display: flex;
flex-direction: column;
justify-content: center;
}
.spinner {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-bottom: 20px;
}
.random-text {
font-size: 20px;
font-weight: 600;
font-family: "Roboto";
color: #323f4b;
}
.text-area {
padding: 8px;
color: #323f4b;
font-size: 18px;
font-weight: 500;
}
.result-text {
font-size: 15px;
font-weight: 600;
color: #323f4b;
font-family: "Roboto";
margin-top: 15px;
padding-left: 10px;
}
.buttons-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding: 10px;
}
.button {
border-width: 0px;
padding: 10px 30px 10px 30px;
border-radius: 10px;
margin-right: 30px;
font-size: 20px;
font-weight: 500;
font-family: "Roboto";
}
.submit-button {
background-color: #690cb0;
color: #ffffff;
}
.reset-btn {
background-color: #ffffff;
}