-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrency.css
84 lines (73 loc) · 1.39 KB
/
currency.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
*{
margin: 0;
padding: 0;
}
body{
background-color: #072536;
color: #f9f7f3;
font-size: large;
}
.container{
margin-top : 2rem;
margin-left: auto;
margin-right: auto;
background-color:#a09e8a ;
border: 3px solid #43291f;
border-radius: 1rem;
height: auto;
width : 30%;
color: #034732;
padding: 1.3rem;
}
.country{
display: flex;
justify-content: space-around;
align-items: center;
}
.container #change{
color: #072536;
margin-left: 40%;
cursor: pointer;
}
.country select{
width: 10rem;
border: none;
border-radius: 0.2rem;
border: 1.5px solid #c4fff9;
}
.container input, button{
padding: 0.3rem;
margin-top: 1rem;
width: 90%;
height: 1.5rem;
border: none;
border-radius: 0.4rem;
border: 1.5px solid #c4fff9;
}
.msg-container button{
margin-left: 15%;
width: 70%;
height: 2rem;
font-size: 1.1rem;
cursor: pointer;
}
p{
margin-top: 1rem;
font-size: 1.3rem;
}
h4{
margin-top: 1rem;
text-align: center;
color: #30454f;
}
footer{
height: auto;
margin-top: 5rem;
width: 100%;
background-color: #034732;
}
@media screen and (max-width : 500px){
.container{
width: 70%;
}
}