zkt26/z1/frontend/style.css
2026-04-20 11:55:43 +02:00

66 lines
867 B
CSS

body {
font-family: Arial;
background: #f4f6f8;
margin: 0;
padding: 0;
}
.container {
background: white;
padding: 20px;
border-radius: 10px;
width: 400px;
margin: 50px auto;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
h1 {
text-align: center;
}
input {
padding: 8px;
margin: 5px 0;
width: 100%;
box-sizing: border-box;
}
button {
padding: 8px;
margin-top: 5px;
cursor: pointer;
width: 100%;
}
#list {
margin-top: 15px;
}
.task {
display: flex;
justify-content: space-between;
align-items: center;
background: #eee;
padding: 8px;
margin-top: 5px;
border-radius: 5px;
}
.task span {
text-align: left;
}
.buttons button {
margin-left: 5px;
}
.delete {
background: red;
color: white;
}
.edit {
background: orange;
color: white;
}