-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
53 lines (46 loc) · 859 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
margin: 0;
padding: 0;
font-family: "Mulish", sans-serif;
}
body{
background-color: #141526;
text-align: center;
margin-top: 60px;
}
h1{
color: #ffffff;
}
button{
width: 145px;
height: 28px;
border-radius: 5px;
border: none;
background-color: #1cbfff;
color: rgb(1, 0, 44);
margin-top: 30px;
font-weight: 600;
}
button:hover{
cursor: pointer;
background-color: #1cbfffd3;
font-weight: 700;
transform: scale(1.05);
}
#speed-msg{
margin-top: 10px;
color: #ffff;
}
.footer {
position: fixed;
bottom: 10px;
right: 42vw;
color: #1cbfff;
font-size: 17px;
font-weight: 600;
}
.footer a{
text-decoration: none;
color: #c50bda;
}