ref: master
css/main.css
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
form { display: flex; flex-direction: column; align-items: center; } form input { width: 80%; padding: 10px; margin: 10px 0; font-size: 1rem; border: 1px solid #ccc; border-radius: 5px; } form button { padding: 10px 20px; font-size: 1rem; background-color: #4CAF50; color: white; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } form button:hover { background-color: #45a049; } #task-list { list-style: none; padding: 0; } #task-list li { display: flex; justify-content: space-between; align-items: center; padding: 10px; margin: 10px 0; background: #f0f0f0; border: 1px solid #ccc; border-radius: 5px; } |