Update style.css
Browse files
style.css
CHANGED
@@ -35,7 +35,7 @@ header h1 {
|
|
35 |
font-weight: bold;
|
36 |
}
|
37 |
|
38 |
-
input
|
39 |
padding: 12px;
|
40 |
margin: 10px 0;
|
41 |
width: 100%;
|
@@ -46,40 +46,46 @@ input, select {
|
|
46 |
transition: border-color 0.3s;
|
47 |
}
|
48 |
|
49 |
-
input:focus
|
50 |
border-color: #1E90FF;
|
51 |
outline: none;
|
52 |
}
|
53 |
|
54 |
.currency-selectors {
|
55 |
display: flex;
|
56 |
-
justify-content: space-between;
|
57 |
align-items: center;
|
58 |
gap: 10px;
|
59 |
margin: 15px 0;
|
60 |
}
|
61 |
|
62 |
-
.selector-group {
|
63 |
-
display: flex;
|
64 |
-
align-items: center;
|
65 |
-
gap: 10px;
|
66 |
-
}
|
67 |
-
|
68 |
#swapButton {
|
69 |
background-color: #1E90FF;
|
70 |
color: white;
|
71 |
border: none;
|
72 |
border-radius: 50%;
|
73 |
padding: 10px;
|
74 |
-
cursor: pointer;
|
75 |
font-size: 16px;
|
|
|
76 |
}
|
77 |
|
78 |
#swapButton:hover {
|
79 |
background-color: #104E8B;
|
80 |
}
|
81 |
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
83 |
padding: 12px;
|
84 |
background-color: #1E90FF;
|
85 |
color: white;
|
@@ -90,7 +96,7 @@ button {
|
|
90 |
transition: background-color 0.3s ease;
|
91 |
}
|
92 |
|
93 |
-
button:hover {
|
94 |
background-color: #104E8B;
|
95 |
}
|
96 |
|
|
|
35 |
font-weight: bold;
|
36 |
}
|
37 |
|
38 |
+
input {
|
39 |
padding: 12px;
|
40 |
margin: 10px 0;
|
41 |
width: 100%;
|
|
|
46 |
transition: border-color 0.3s;
|
47 |
}
|
48 |
|
49 |
+
input:focus {
|
50 |
border-color: #1E90FF;
|
51 |
outline: none;
|
52 |
}
|
53 |
|
54 |
.currency-selectors {
|
55 |
display: flex;
|
|
|
56 |
align-items: center;
|
57 |
gap: 10px;
|
58 |
margin: 15px 0;
|
59 |
}
|
60 |
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
#swapButton {
|
62 |
background-color: #1E90FF;
|
63 |
color: white;
|
64 |
border: none;
|
65 |
border-radius: 50%;
|
66 |
padding: 10px;
|
|
|
67 |
font-size: 16px;
|
68 |
+
cursor: pointer;
|
69 |
}
|
70 |
|
71 |
#swapButton:hover {
|
72 |
background-color: #104E8B;
|
73 |
}
|
74 |
|
75 |
+
select {
|
76 |
+
padding: 12px;
|
77 |
+
font-size: 16px;
|
78 |
+
border-radius: 8px;
|
79 |
+
border: 1px solid #ccc;
|
80 |
+
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
|
81 |
+
}
|
82 |
+
|
83 |
+
select:focus {
|
84 |
+
border-color: #1E90FF;
|
85 |
+
outline: none;
|
86 |
+
}
|
87 |
+
|
88 |
+
button[type="submit"] {
|
89 |
padding: 12px;
|
90 |
background-color: #1E90FF;
|
91 |
color: white;
|
|
|
96 |
transition: background-color 0.3s ease;
|
97 |
}
|
98 |
|
99 |
+
button[type="submit"]:hover {
|
100 |
background-color: #104E8B;
|
101 |
}
|
102 |
|