Spaces:
Runtime error
Runtime error
/* styles.css */ | |
body { | |
background-color: #87CEEB; | |
font-family: 'Arial', sans-serif; | |
} | |
.header { | |
text-align: center; | |
margin-top: 20px; | |
} | |
.header-title { | |
font-size: 24px; | |
font-weight: bold; | |
color: #333; | |
} | |
.header-subtitle { | |
font-size: 16px; | |
font-weight: normal; | |
color: #555; | |
} | |
.header-subtitle a { | |
color: #1e90ff; /* Dodger Blue */ | |
text-decoration: none; | |
} | |
.header-subtitle a:hover { | |
text-decoration: underline; | |
} | |
.custom-button { | |
background-color: #4CAF50 ; | |
border: none; | |
color: green; | |
padding: 10px 20px; | |
text-align: center; | |
text-decoration: none; | |
display: inline-block; | |
font-size: 16px; | |
margin: 4px 2px; | |
cursor: pointer; | |
border-radius: 8px; | |
width: 300px; | |
} | |
.custom-textbox { | |
border: 1px solid #4CAF50; | |
border-radius: 4px; | |
padding: 4px; | |
background-color: #87CEFA; | |
} | |
.footer { | |
background-color: #f2f2f2; /* Sky Blue */ | |
color: white; | |
padding: 10px; | |
text-align: center; | |
position: fixed; /* Fixed/sticky position */ | |
left: 0; | |
bottom: 0; | |
width: 100%; /* Full width */ | |
font-size: 14px; | |
font-family: 'Arial', sans-serif; | |
} | |