123456789101112131415161718192021 |
- .title {
- font-size: 24px;
- font-weight: 800;
- text-align: center;
- color: hotpink
- }
- .box {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .todo-item {
- display: flex;
- align-items: center;
- margin-top: 5px;
- padding-bottom: 5px;
- border-bottom: 1px solid #ccc;
- }
|