-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (97 loc) · 2.27 KB
/
style.css
File metadata and controls
124 lines (97 loc) · 2.27 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
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
123
124
*{
margin: 0px;
padding: 0px;
}
body{
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background-color: #9D75CB;
.container{
background-color: #AAFFE5;
padding: 2rem;
border-radius: 2rem;
min-height: 25vh;
min-width: 25vw;
}
h2{
display: flex;
justify-content: center;
padding: 20px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
form{
margin: /*5rem 2rem 5rem 6rem*/ 20%;
}
form input, select, button{
width: 100%;
border: none;
outline: none;
border-radius: 5px;
background-color: rgba(64, 148, 148, 0);
}
form input{
border: 1px solid rgb(141, 123, 195);
font-size: 1rem;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
height: 2rem;
text-align: center;
background-color: rgba(64, 148, 148, 0.25);
}
.amount{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.dropdown{
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1.5rem;
}
.select-currency img{
max-width: 1.75rem;
}
.select-currency{
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(103, 144, 144, 0.25);
border-radius: 0.5rem;
border: 1px solid rgb(141, 123, 195);
}
.from{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.dropdown i{
font-size: 0.75rem;
margin-top: 1rem;
/*padding: 20px;*/
}
.to{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.result{
margin-top: 1.5rem;
}
form button{
margin-top: 1rem;
height: 3rem;
font-size: 1rem;
font-family: Verdana, Geneva, Tahoma, sans-serif;
border: 1px solid rgb(141, 123, 195);
cursor: pointer;
background-color: rgba(103, 144, 144, 0.25);
}
@media (max-width: 450px){
.dropdown {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.from,
.to{
width: 100%;
}
}