-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
122 lines (110 loc) · 2.21 KB
/
index.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
margin: 0;
text-align: center;
}
@font-face {
font-family: 'Inter';
src: url(Inter[wght].ttf);
}
/*Main Container of the app*/
.main-container {
width: 550px;
height: 729px;
background: #1F2937;
margin: 0 auto;
}
/*Head Container*/
.head-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-around;
width: 550px;
height: 285px;
background: #6943FF;
}
#title {
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 28px;
line-height: 38px;
letter-spacing: -0.03em;
color: #FFFFFF;
margin-bottom: 0px;
}
#value {
width: 300px;
height: 83px;
border: 2px solid #B295FF;
border-radius: 5px;
box-sizing: border-box;
background: #6943FF;
font-family: 'Inter';
font-style: normal;
font-weight: 800;
font-size: 58px;
line-height: 24px;
color: #FFFFFF;
text-align: center;
margin-bottom: 0px;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Firefox */
input[type=number] {
-moz-appearance: textfield;
}
button {
width: 117px;
height: 42px;
background: #FFFFFF;
box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
border: none;
border-radius: 5px;
font-family: 'Inter';
font-style: normal;
font-weight: 500;
font-size: 16px;
line-height: 24px;
color: #3D3D3D;
margin-bottom: 0px;
}
/*Group Container with the 3 groups*/
.conversion-groups {
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
.group {
display: flex;
flex-direction: column;
justify-content: center;
width: 500px;
height: 108.57px;
background: #273549;
border-radius: 4.68077px 0px 0px 0px;
margin-top: 25px;
}
.group-title {
font-family: 'Inter';
font-style: normal;
font-weight: 600;
font-size: 20px;
line-height: 20px;
color: #CCC1FF;
margin-bottom: 0px;
}
.conversion-style {
font-family: 'Inter';
font-style: normal;
font-weight: 400;
font-size: 14px;
line-height: 20px;
color: #FFFFFF;
}