modified design

This commit is contained in:
imelilabourne 2020-09-15 14:51:16 +08:00
parent 82e1009231
commit de41871af7
4 changed files with 8 additions and 4 deletions

View File

@ -1,13 +1,13 @@
{ {
"tasks": [ "tasks": [
{ {
"title": "Sleep", "title": "Sleeping",
"completed": false, "completed": false,
"editing": false, "editing": false,
"id": 1 "id": 1
}, },
{ {
"title": "Dance", "title": "Dancing all day",
"completed": false, "completed": false,
"editing": false, "editing": false,
"id": 2 "id": 2

View File

@ -7,6 +7,10 @@
text-decoration-line: line-through; text-decoration-line: line-through;
} }
h1{
font-family: 'Patrick Hand', cursive;
}
.addInput{ .addInput{
max-width: 500px; max-width: 500px;
line-height: 2em; line-height: 2em;

View File

@ -2,7 +2,7 @@
<div class="nav">Hello! <span class="dateClass">{{today | date: 'short'}}</span></div> <div class="nav">Hello! <span class="dateClass">{{today | date: 'short'}}</span></div>
<div class="main-container"> <div class="main-container">
<div class="header"> <div class="header">
<h1>TODO LIST</h1> <h1>TODO LIST <i class="fa fa-pencil"></i></h1>
</div> </div>
<div *ngIf="remaining() !== 0"> <div *ngIf="remaining() !== 0">
<div class="info"><input type="checkbox" (change)="selectAll()">Select All</div> <div class="info"><input type="checkbox" (change)="selectAll()">Select All</div>

View File

@ -1,5 +1,5 @@
@import url('https://fonts.googleapis.com/css2?family=Ruluko&display=swap'); @import url('https://fonts.googleapis.com/css2?family=Ruluko&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Patrick+Hand&display=swap');
*{ *{
font-family: 'Ruluko', sans-serif; font-family: 'Ruluko', sans-serif;
margin: 0; margin: 0;