Skip to content

Commit b4786f9

Browse files
committed
add structure of the project
1 parent 24b573d commit b4786f9

File tree

7 files changed

+106
-0
lines changed

7 files changed

+106
-0
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"liveServer.settings.port": 5501
3+
}

Mini ToDoList App Page/css/responsive.css

Whitespace-only changes.
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/* Font */
2+
@font-face {
3+
src: url("../src/assets/fonts/Rubik.ttf");
4+
font-family: "Rubik";
5+
font-weight: normal;
6+
font-style: normal;
7+
}
8+
9+
:root {
10+
--primary-color: ;
11+
--secondary-color: ;
12+
--yellow-color: ;
13+
--white-color: ;
14+
--dark-color: ;
15+
--default-radius: 15px;
16+
--primary-font: "Rubik";
17+
}
18+
19+
/* Reset CSS */
20+
html {
21+
scroll-behavior: smooth;
22+
}
23+
24+
body {
25+
font-family: var(--primary-font), sans-serif;
26+
}
27+
28+
* {
29+
padding: 0;
30+
margin: 0;
31+
border: none;
32+
outline: none;
33+
box-sizing: border-box;
34+
}
35+
36+
img {
37+
width: 100%;
38+
}
39+
40+
a {
41+
text-decoration: none;
42+
}
43+
44+
p {
45+
line-height: 1.6em;
46+
}
47+
48+
button {
49+
background: none;
50+
}
51+
/* End Of Reset CSS */

Mini ToDoList App Page/favicon.ico

1.96 KB
Binary file not shown.

Mini ToDoList App Page/index.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
8+
<meta name="color-scheme" content="light" />
9+
<meta name="format-detection" content="telephone=no" />
10+
<meta name="keywords" content="JS ToDoList" />
11+
<meta
12+
name="description"
13+
content="Simple and Plain JS To Do List Design To Practice And Easy To Use"
14+
/>
15+
<meta name="subject" content="JS ToDoList" />
16+
<meta name="copyright" content="[email protected]" />
17+
<meta name="language" content="en-US" />
18+
<meta name="robots" content="no-index, no-follow" />
19+
<meta name="author" content="KasraK10, [email protected]" />
20+
<meta name="generator" content="Visual Studio Code" />
21+
<meta name="topic" content="JS ToDoList" />
22+
<meta name="summary" content="JS ToDoList" />
23+
<meta
24+
name="designer"
25+
content="Kasra Hosseini - K10 - https://kasra10design.com"
26+
/>
27+
<meta name="owner" content="KasraK10" />
28+
<meta name="category" content="JS ToDoList" />
29+
30+
<!-- FontAwesome Icons -->
31+
<link
32+
rel="stylesheet"
33+
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css"
34+
integrity="sha512-DxV+EoADOkOygM4IR9yXP8Sb2qwgidEmeqAEmDKIOfPRQZOWbXCzLC6vjbZyy0vPisbH2SyW27+ddLVCN+OMzQ=="
35+
crossorigin="anonymous"
36+
referrerpolicy="no-referrer"
37+
/>
38+
39+
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
40+
<link rel="stylesheet" href="./css/style.css" type="text/css" media="all" />
41+
<link
42+
rel="stylesheet"
43+
href="./css/responsive.css"
44+
type="text/css"
45+
media="all"
46+
/>
47+
<title>Mini ToDoList App Page</title>
48+
</head>
49+
<body>
50+
<script src="./js/main.js"></script>
51+
</body>
52+
</html>

Mini ToDoList App Page/js/main.js

Whitespace-only changes.
345 KB
Binary file not shown.

0 commit comments

Comments
 (0)