66 lines
930 B
CSS
66 lines
930 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; /* vycentrovanie */
|
|
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
h1 {
|
|
text-align: center; /* nadpis na stred */
|
|
}
|
|
|
|
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; /* zarovnanie dolava */
|
|
}
|
|
|
|
.buttons button {
|
|
margin-left: 5px;
|
|
}
|
|
|
|
.delete {
|
|
background: red;
|
|
color: white;
|
|
}
|
|
|
|
.edit {
|
|
background: orange;
|
|
color: white;
|
|
}
|