Skip to content

Commit 038abee

Browse files
committed
adding about page
1 parent 56bdc19 commit 038abee

26 files changed

+688
-465
lines changed

__tests__/functionality.test.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

dist/functionalty.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 600 additions & 171 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
"gulp-sourcemaps": "^1.12.1",
3232
"gulp-uglify": "^3.0.2",
3333
"gulp-zip": "^5.1.0",
34+
"jest": "^28.1.0",
3435
"sass": "^1.52.0"
3536
},
3637
"dependencies": {
37-
"jest": "^28.1.0",
3838
"static-server": "^2.2.1"
3939
}
4040
}

project/css/_global.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
}
77
body {
88
font-family: "Cairo", sans-serif;
9+
background-color: #eee;
10+
height: 100vh;
11+
overflow: hidden;
912
}
1013
html {
1114
scroll-behavior: smooth;

project/css/layouts/_github.scss

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,12 @@
33
background-color: $soft-black;
44
height: 30px;
55
color: #fff;
6-
a {
7-
color: $js !important;
8-
&:hover {
9-
text-decoration: underline !important;
6+
p {
7+
a {
8+
color: $js !important;
9+
&:hover {
10+
text-decoration: underline !important;
11+
}
1012
}
1113
}
1214
}

project/css/pages/_about.scss

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.about {
2+
.container {
3+
.box {
4+
list-style-type: square;
5+
font-weight: bold;
6+
li {
7+
padding-left: 30px;
8+
}
9+
}
10+
}
11+
}

project/css/pages/_home.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
.landing {
2-
background-color: #eee;
32
height: calc(100vh - 90px);
43
.coontainer {
54
height: 100%;

project/html/index.pug

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
include library/links.pug
1+
include ./library/links.pug
22
include ./library/loading.pug
3-
include layouts/github.pug
4-
include layouts/header.pug
3+
include ./layouts/github.pug
4+
include ./layouts/header.pug
55
.content
66
.landing.d-flex.align-items-center
77
.container.d-flex.align-items-center.justify-content-between

project/html/layouts/github.pug

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.github.text-center
2-
p.text-truncate Functionality.js Library Is an Open Source Library You Can Contribute To It From <a href="https://github.com/Ali-Eldeba/functionalty.js" target="_blank"> Here</a>
2+
.container
3+
p.text-truncate Functionality.js Library Is an Open Source Library You Can Contribute To It From <a href="https://github.com/Ali-Eldeba/functionalty.js" target="_blank"> Here</a>

0 commit comments

Comments
 (0)