-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
85 lines (76 loc) · 1.41 KB
/
Copy pathmain.css
File metadata and controls
85 lines (76 loc) · 1.41 KB
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
body{
font-family: 'Inter';
margin: 0;
}
#hero{
background: #6943FF;
width: 100%;
color: white;
text-align: center;
height: 250px;
margin-top: 0;
margin-bottom: 0;
padding: 10px 0;
display: flex;
flex-direction: column;
align-items: center;
}
#hero h3 {
font-style: normal;
font-weight: 800;
font-size: 50px;
line-height: 38px;
margin-top: 20px;
}
#num-input{
margin: 30px auto;;
font-weight: 800;
font-size: 50px;
box-sizing: border-box;
width: 120px;
height: 70px;
border: 2px solid #B295FF;
border-radius: 5px;
margin-top: 0;
text-align: center;
}
#convert-btn{
width: 120px;
height: 42px;
background: white;
border-radius: 5px;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
font-weight: 800;
font-size: larger;
}
#bottom-hero{
padding-top: 50px;
margin: 0;
background: #F4F4F4;
width: 100%;
height: 567px;
display: flex;
flex-direction: column;
align-items: center;
}
.metrics-ctn{
background: white;
height: 110px;
text-align: center;
width: 550px;
margin: 25px;
padding: 0px;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
#bottom-hero h4{
font-size: 25px;
margin: 10px auto 0 auto;
color: #6943FF;
}
#bottom-hero p{
font-size: larger;
margin-bottom: 0px;
}