GarGerry commited on
Commit
3fc2fb9
·
verified ·
1 Parent(s): cc94bf7

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +41 -7
style.css CHANGED
@@ -50,11 +50,27 @@ body {
50
  align-items: center;
51
  }
52
 
53
- .converter-container input, .converter-container select, .converter-container button {
54
  margin: 10px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
55
  padding: 10px;
56
  font-size: 16px;
57
- width: 200px;
 
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
- margin-top: 10px;
 
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
- .converter-container {
134
- width: 100%;
135
  }
136
 
137
- .footer-content p {
138
- font-size: 14px;
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
  }