Ujicobaconvert / style.css
GarGerry's picture
Update style.css
c2dab81 verified
raw
history blame
1.12 kB
/* 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;
}