Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -50,11 +50,27 @@ body {
|
|
50 |
align-items: center;
|
51 |
}
|
52 |
|
53 |
-
.
|
54 |
margin: 10px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
padding: 10px;
|
56 |
font-size: 16px;
|
57 |
-
|
|
|
58 |
border: 1px solid #ccc;
|
59 |
}
|
60 |
|
@@ -62,6 +78,11 @@ body {
|
|
62 |
background-color: #006400;
|
63 |
color: white;
|
64 |
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
|
65 |
}
|
66 |
|
67 |
#convert-btn:hover {
|
@@ -72,7 +93,8 @@ body {
|
|
72 |
background-color: #cccccc;
|
73 |
color: black;
|
74 |
cursor: pointer;
|
75 |
-
|
|
|
76 |
}
|
77 |
|
78 |
#swap-btn:hover {
|
@@ -127,14 +149,26 @@ body {
|
|
127 |
.steps {
|
128 |
flex-direction: column;
|
129 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
}
|
131 |
|
132 |
@media screen and (max-width: 480px) {
|
133 |
-
.
|
134 |
-
width: 100%;
|
135 |
}
|
136 |
|
137 |
-
.
|
138 |
-
|
139 |
}
|
140 |
}
|
|
|
50 |
align-items: center;
|
51 |
}
|
52 |
|
53 |
+
.currency-box input {
|
54 |
margin: 10px;
|
55 |
+
padding: 15px;
|
56 |
+
font-size: 16px;
|
57 |
+
width: 100%;
|
58 |
+
max-width: 400px;
|
59 |
+
border-radius: 8px;
|
60 |
+
border: 1px solid #ccc;
|
61 |
+
}
|
62 |
+
|
63 |
+
.currency-select {
|
64 |
+
display: flex;
|
65 |
+
align-items: center;
|
66 |
+
justify-content: center;
|
67 |
+
}
|
68 |
+
|
69 |
+
.currency-select select, .currency-select button {
|
70 |
padding: 10px;
|
71 |
font-size: 16px;
|
72 |
+
margin: 10px;
|
73 |
+
border-radius: 8px;
|
74 |
border: 1px solid #ccc;
|
75 |
}
|
76 |
|
|
|
78 |
background-color: #006400;
|
79 |
color: white;
|
80 |
cursor: pointer;
|
81 |
+
padding: 10px 20px;
|
82 |
+
font-size: 16px;
|
83 |
+
border: none;
|
84 |
+
border-radius: 8px;
|
85 |
+
margin-top: 10px;
|
86 |
}
|
87 |
|
88 |
#convert-btn:hover {
|
|
|
93 |
background-color: #cccccc;
|
94 |
color: black;
|
95 |
cursor: pointer;
|
96 |
+
padding: 10px 20px;
|
97 |
+
border-radius: 8px;
|
98 |
}
|
99 |
|
100 |
#swap-btn:hover {
|
|
|
149 |
.steps {
|
150 |
flex-direction: column;
|
151 |
}
|
152 |
+
|
153 |
+
.currency-select {
|
154 |
+
flex-direction: column;
|
155 |
+
}
|
156 |
+
|
157 |
+
.currency-box input {
|
158 |
+
max-width: 300px;
|
159 |
+
}
|
160 |
+
|
161 |
+
.currency-select select, .currency-select button {
|
162 |
+
width: 100%;
|
163 |
+
}
|
164 |
}
|
165 |
|
166 |
@media screen and (max-width: 480px) {
|
167 |
+
.currency-box input {
|
168 |
+
max-width: 100%;
|
169 |
}
|
170 |
|
171 |
+
.currency-select select, .currency-select button {
|
172 |
+
width: 100%;
|
173 |
}
|
174 |
}
|