Spaces:
Running
Running
File size: 1,115 Bytes
c2dab81 502b5d6 c2dab81 a077f4c c2dab81 a077f4c c2dab81 502b5d6 c2dab81 41130ec c2dab81 502b5d6 41130ec c2dab81 502b5d6 c2dab81 41130ec c2dab81 41130ec a077f4c 502b5d6 41130ec a077f4c 502b5d6 a077f4c c2dab81 502b5d6 |
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 |
/* Styling untuk logo dan header */
header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0;
text-align: center;
border-bottom: 1px solid #ddd;
}
header .logo img {
width: 50px; /* Ukuran logo */
}
header h1 {
color: white;
font-size: 24px;
}
header p {
color: #a1a1a1;
}
/* Styling footer */
footer {
text-align: center;
margin-top: 20px;
font-size: 0.9em;
color: #a1a1a1;
}
footer a {
color: #4CAF50;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}
/* Adjusting layout for input and swap button */
.currency-select {
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
button {
background-color: #4CAF50;
color: white;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
button:hover {
background-color: #45a049;
}
/* Input fields and general layout */
input, select {
padding: 10px;
margin: 10px 0;
width: 100%;
border-radius: 5px;
border: 1px solid #ddd;
}
|