-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (55 loc) · 1.1 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
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;700;800&display=swap');
html,
body {
padding: 0;
margin: 0;
}
body {
background-color: #fff;
display: flex;
justify-content: center;
padding-top: 100px;
}
h1 {
display: flex;
justify-content: center;
font-weight: 1000;
font-size: 80px;
color: rgba(46, 229, 157);
}
#value {
font-weight: 500;
padding-bottom: 60px;
font-size: 100px;
color: rgba(46, 229, 157);
display: flex;
justify-content: center;
}
.button-container {
display: flex;
align-items: center;
justify-content: center;
}
.btn {
width: 140px;
height: 45px;
font-family: 'Roboto', sans-serif;
font-size: 11px;
text-transform: uppercase;
letter-spacing: 2.5px;
font-weight: 500;
color: #000;
background-color: #fff;
border: none;
border-radius: 45px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
transition: all 0.3s ease 0s;
cursor: pointer;
outline: none;
}
.btn:hover {
background-color: #2ee59d;
box-shadow: 0px 15px 20px rgba(46, 229, 157, 0.4);
color: #fff;
transform: translateY(-7px);
}