2024-07-30 08:52:03 +00:00
|
|
|
body {
|
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
header {
|
|
|
|
background-color: #4CAF50;
|
|
|
|
color: white;
|
2024-07-31 06:50:46 +00:00
|
|
|
position: relative;
|
2024-07-30 08:52:03 +00:00
|
|
|
text-align: center;
|
2024-07-31 06:50:46 +00:00
|
|
|
padding: 1em 2em;
|
2024-09-09 06:11:36 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
2024-07-31 06:50:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header h1 {
|
|
|
|
margin: 0;
|
|
|
|
display: inline-block;
|
2024-09-09 06:11:36 +00:00
|
|
|
flex: 1;
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
header input[type="date"] {
|
|
|
|
margin: 0 1em;
|
|
|
|
padding: 0.5em;
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
outline: none;
|
|
|
|
cursor: pointer;
|
2024-07-30 08:52:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
header button {
|
|
|
|
padding: 0.5em 1em;
|
|
|
|
background-color: #fff;
|
|
|
|
border: 1px solid #4CAF50;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
2024-09-09 06:11:36 +00:00
|
|
|
margin-left: 0.5em;
|
|
|
|
transition: background-color 0.3s;
|
|
|
|
}
|
|
|
|
|
|
|
|
header button:hover {
|
|
|
|
background-color: #f0f0f0;
|
2024-07-30 08:52:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
display: flex;
|
|
|
|
padding: 1em;
|
|
|
|
padding-bottom: 4em;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
footer {
|
|
|
|
background-color: #4CAF50;
|
|
|
|
color: white;
|
|
|
|
text-align: center;
|
|
|
|
padding: 1em 0;
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
footer a {
|
|
|
|
color: white;
|
2024-07-30 13:13:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-left {
|
|
|
|
float: left;
|
|
|
|
margin-left: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-right {
|
|
|
|
float: right;
|
|
|
|
margin-right: 1em;
|
2024-09-09 06:11:36 +00:00
|
|
|
}
|