File size: 2,611 Bytes
4f6b6be
 
 
d26d78d
 
4f6b6be
d26d78d
 
 
 
 
 
 
4f6b6be
 
 
063176f
7a4fadb
 
4f6b6be
 
063176f
 
4f6b6be
 
d26d78d
 
 
4f6b6be
 
 
d26d78d
 
 
4f6b6be
 
d26d78d
 
4f6b6be
 
d26d78d
 
4f6b6be
 
d26d78d
4f6b6be
 
 
 
 
 
 
 
d26d78d
 
 
4f6b6be
 
d26d78d
 
 
4f6b6be
 
d26d78d
 
4f6b6be
 
 
 
 
d26d78d
f9a6b06
 
4f6b6be
 
 
49c5921
063176f
4f6b6be
d26d78d
4f6b6be
d52423d
49c5921
063176f
4f6b6be
 
 
 
 
 
e7cd247
 
4f6b6be
 
d26d78d
d52423d
 
4f6b6be
d52423d
49c5921
063176f
49c5921
d26d78d
 
4f6b6be
 
 
 
 
d26d78d
d52423d
4f6b6be
 
 
063176f
 
4f6b6be
 
 
 
 
 
49c5921
 
4f6b6be
 
 
 
d26d78d
 
4f6b6be
 
 
 
 
 
 
 
 
 
 
 
 
49c5921
 
d26d78d
4f6b6be
 
d26d78d
063176f
4f6b6be
d26d78d
 
4f6b6be
d26d78d
 
 
 
4f6b6be
d26d78d
4f6b6be
 
 
 
 
 
 
 
 
 
 
 
e2724f3
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* General Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1b5e20; /* Dark Green */
    color: white;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navbar */
#navbar {
    background-color: #2c6e1f; /* Dark Green */
    padding: 20px;
    text-align: center;
}

#navbar h1 {
    margin: 0;
}

#navbar p {
    margin: 5px 0;
}

/* Headline */
#headline {
    background-color: #2c6e1f; /* Dark Green */
    padding: 30px;
    text-align: center;
}

#headline h2 {
    margin: 0;
}

#headline p {
    margin: 10px 0;
}

/* Currency Converter Section */
#converter {
    background-color: white;
    color: #333;
    padding: 30px;
}

.currency-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.currency-input {
    display: flex;
    flex-direction: column;
}

.currency-input label {
    font-size: 16px;
    margin-bottom: 8px;
}

.currency-input input, 
.currency-input select {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Swap Button */
#swap-btn {
    background-color: #4CAF50; /* Green */
    border: none;
    padding: 12px;
    color: white;
    cursor: pointer;
    font-size: 20px;
    border-radius: 50%;
    margin: 10px auto;
    display: block;
    width: 50px;
    height: 50px;
}

#swap-btn:hover {
    background-color: #45a049;
}

/* Convert Button */
#convert-btn {
    background-color: #4CAF50;
    color: white;
    padding: 15px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
}

#convert-btn:hover {
    background-color: #45a049;
}

/* Result Section */
#result {
    margin-top: 20px;
    font-size: 1.5em;
    color: #333;
    text-align: center;
}

/* Step-by-Step Guide */
#how-to {
    background-color: #2c6e1f; /* Dark Green */
    padding: 30px;
    color: white;
    text-align: center;
}

.steps {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.step {
    width: 30%;
}

.step h4 {
    font-weight: bold;
    margin: 10px 0;
}

.step-box {
    background-color: #cccccc; /* Light Gray */
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #555;
    color: white;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #4CAF50;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsiveness */
@media (max-width: 600px) {
    .steps {
        flex-direction: column;
        gap: 10px;
    }

    .step {
        width: 100%;
    }
}