Skip to content

Commit d18e322

Browse files
author
Mehrajul Islam
committed
removed redundency of css
1 parent 9100dfa commit d18e322

File tree

8 files changed

+7
-607
lines changed

8 files changed

+7
-607
lines changed

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ npm install cors
2020
# Database Design
2121
It is not the most efficient database design out there. Still it works fine for me for now.
2222

23-
![Database Schema](/Extra/databaseSchema.png "Database Schema")
23+
![Database Schema](/Extra/databaseSchema.png "Database Schema")
24+
25+
Here nid in the tasks table means the note id or the parent id of a task.

home/home.css

-302
This file was deleted.

home/home.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,700,900&display=swap"
1010
rel="stylesheet"
1111
/>
12-
<link rel="stylesheet" href="./home.css" />
12+
<link rel="stylesheet" href="../styles/style.css" />
1313
<script defer src="./home.js"></script>
1414
</head>
1515

login/login.css

-300
This file was deleted.

login/login.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
88
<title>Log In to LISTY</title>
99
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,700,900&display=swap" rel="stylesheet" />
10-
<link rel="stylesheet" href="./login.css" />
10+
<link rel="stylesheet" href="../styles/style.css" />
1111
<script defer src="./login.js"></script>
1212
</head>
1313

signup/signup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
href="https://fonts.googleapis.com/css?family=Work+Sans:300,400,700,900&display=swap"
1010
rel="stylesheet"
1111
/>
12-
<link rel="stylesheet" href="./signup.css" />
12+
<link rel="stylesheet" href="../styles/style.css" />
1313
<script defer src="./signup.js"></script>
1414
</head>
1515

signup/signup.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ tasksContainer.addEventListener('click', e => {
3333
})
3434

3535
clearCompleteTasksButton.addEventListener('click', e => {
36-
window.location.href = defaultPath + "/login.html";
36+
window.location.href = "../login/login.html";
3737
saveAndRender()
3838
})
3939

File renamed without changes.

0 commit comments

Comments
 (0)