-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprice.css
More file actions
57 lines (48 loc) · 707 Bytes
/
Copy pathprice.css
File metadata and controls
57 lines (48 loc) · 707 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
52
53
54
55
56
57
@import url('https://fonts.googleapis.com/css2?family=Overpass:wght@100;900&display=swap');
* {
box-sizing: border-box;
font-family: 'Overpass', sans-serif;
font-weight: 100;
}
body {
text-align: center;
margin: 40vh 10vw;
display: flex;
flex-direction: column;
align-items: center;
background: linear-gradient(to right, #8e2de2, #4a00e0);
}
h1,
p,
a {
color: white;
margin-bottom: 2rem;
}
a:hover {
transform: scale(2);
}
#bitprice,
a:hover,
a:focus {
color: #38ef7d;
}
button {
width: 15vw;
height: 8vh;
color: #38ef7d;
border-radius: 50px;
margin-bottom: 2rem;
}
#bitprice,
button,
a:hover {
font-weight: 900;
}
p {
font-size: 1rem;
}
button,
p,
h1 {
letter-spacing: 2px;
}