kanblendar/example.css
Kumi 38d9d36312
feat: add initial Kanblendar project with core features
Introduced the Kanblendar project, which combines a Kanban board and a daily calendar. Users can create, edit, and organize tasks in columns and time slots, with notification support for upcoming tasks.

Added README.md with detailed usage instructions and LICENSE file for licensing under MIT. Created example files (HTML, CSS, JS) to illustrate the usage of Kanblendar, and essential styles and scripts for its functionality.
2024-07-30 10:52:03 +02:00

43 lines
No EOL
635 B
CSS

body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
background-color: #4CAF50;
color: white;
text-align: center;
padding: 1em 0;
}
header button {
margin: 1em;
padding: 0.5em 1em;
background-color: #fff;
border: 1px solid #4CAF50;
border-radius: 5px;
cursor: pointer;
}
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;
}