-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (96 loc) · 1.71 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
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
border: none;
outline: none;
}
body {
background-color: #9873fe;
}
.wrapper {
width: 90%;
max-width: 25em;
background-color: #fff;
border-radius: 0.8em;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
padding: 1em;
}
.app-details {
display: flex;
align-items: center;
flex-direction: column;
}
.app-icon {
width: 9.37em;
}
.app-title {
font-size: 1.5em;
/* text-transform: uppercase; */
margin-bottom: 1em;
}
label {
display: block;
font-weight: 600;
}
input#amount {
display: block;
width: 100%;
font-size: 1.2em;
font-weight: 400;
border-bottom: 2px solid #02002c;
color: #7a789d;
padding: 0.4em;
margin-bottom: 2rem;
}
input#amount:focus {
color: #9873fe;
border-color: #9873fe;
}
.dropdowns {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1em;
}
select {
width: 100%;
padding: 0.6em;
font-size: 1em;
border-radius: 0.3em;
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
color: #fff;
background-color: #9873fe;
background-image: url(img/arrow-down.svg);
background-repeat: no-repeat;
background-size: 20px 20px;
background-position: right 15px top 50%, center;
}
select option{
background-color: #fff;
color: #02002c;
}
button{
width: 100%;
font-size: 1em;
font-weight: 500;
color: #fff;
background-color: #9873fe;
padding: 1em 0;
margin-top: 1em;
border-radius: 0.3em;
}
#result{
font-size: 1.2em;
margin-top: 1em;
padding: 0.8em 0;
text-align: center;
color: #02002c;
background-color: #e5dbff;
}