-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
51 lines (45 loc) · 933 Bytes
/
style.css
File metadata and controls
51 lines (45 loc) · 933 Bytes
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
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
margin: 0;
background-color: #f0f2f5;
}
h1 {
font-size: 2.5em;
color: #333;
margin-bottom: 20px;
text-align: center;
}
#speedTestBtn {
background-color: #4CAF50;
color: white;
padding: 15px 30px;
font-size: 1.2em;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#speedTestBtn:hover:not(:disabled) {
background-color: #45a049;
}
#speedTestBtn:disabled {
background-color: #388e3c;
cursor: not-allowed;
}
#result {
margin-top: 20px;
font-size: 1.2em;
color: #555;
text-align: center;
}
.container {
text-align: center;
padding: 20px;
background: #ffffff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 10px;
}