modified design
This commit is contained in:
parent
82e1009231
commit
de41871af7
4
db.json
4
db.json
@ -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
|
||||||
|
@ -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;
|
||||||
|
@ -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>
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user