portfolyou-jekyll-theme 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +17 -0
  4. data/_includes/404.html +129 -0
  5. data/_includes/about/skills.html +11 -0
  6. data/_includes/about/timeline.html +13 -0
  7. data/_includes/blog/index.html +76 -0
  8. data/_includes/blog/search.html +25 -0
  9. data/_includes/blog/tags.html +31 -0
  10. data/_includes/elements/button.html +9 -0
  11. data/_includes/elements/carousel.html +40 -0
  12. data/_includes/elements/figure.html +6 -0
  13. data/_includes/elements/highlight.html +1 -0
  14. data/_includes/elements/list.html +19 -0
  15. data/_includes/elements/video.html +3 -0
  16. data/_includes/footer.html +16 -0
  17. data/_includes/head.html +23 -0
  18. data/_includes/landing.html +15 -0
  19. data/_includes/navbar.html +67 -0
  20. data/_includes/projects/index.html +55 -0
  21. data/_includes/projects/project-card.html +21 -0
  22. data/_includes/scripts.html +25 -0
  23. data/_includes/social.html +20 -0
  24. data/_layouts/default.html +25 -0
  25. data/_layouts/element.html +141 -0
  26. data/_layouts/page.html +7 -0
  27. data/_layouts/post.html +36 -0
  28. data/_sass/_404.scss +257 -0
  29. data/_sass/_base.scss +7 -0
  30. data/_sass/_blog.scss +144 -0
  31. data/_sass/_footer.scss +21 -0
  32. data/_sass/_landing.scss +28 -0
  33. data/_sass/_navbar.scss +35 -0
  34. data/_sass/_projects.scss +13 -0
  35. data/_sass/_skills.scss +73 -0
  36. data/_sass/_timeline.scss +47 -0
  37. data/_sass/_variables.scss +10 -0
  38. data/_sass/autumn.scss +67 -0
  39. data/_sass/portfolYOU.scss +17 -0
  40. data/assets/css/style.scss +3 -0
  41. data/assets/favicon.ico +0 -0
  42. data/assets/js/card-animation.js +11 -0
  43. data/assets/js/remote-projects.js +26 -0
  44. metadata +170 -0
@@ -0,0 +1,35 @@
1
+ .link-after {
2
+ content: "";
3
+ display: block;
4
+ height: 0.15em;
5
+ background: $primary;
6
+ }
7
+
8
+ .nav-link,
9
+ .navbar-brand {
10
+ &::after {
11
+ @extend .link-after;
12
+ width: 0;
13
+ transition: width 0.35s;
14
+ }
15
+
16
+ &:hover::after {
17
+ width: 100%;
18
+ }
19
+ }
20
+
21
+ .nav-item.active {
22
+ font-weight: bold;
23
+
24
+ &::after {
25
+ @extend .link-after;
26
+ width: 100% !important;
27
+ }
28
+ }
29
+
30
+ .navbar-brand {
31
+ margin-bottom: -14px;
32
+ &::after {
33
+ margin-top: -0.25em;
34
+ }
35
+ }
@@ -0,0 +1,13 @@
1
+ .project.card {
2
+ border-radius: $rounded-borders;
3
+ text-decoration: none !important;
4
+ margin: 10px auto;
5
+
6
+ .card-img-top {
7
+ border-radius: $rounded-borders $rounded-borders 0 0;
8
+ }
9
+
10
+ &:hover:not(.post) {
11
+ box-shadow: -2px 8px 40px -12px rgba(0, 0, 0, 0.24);
12
+ }
13
+ }
@@ -0,0 +1,73 @@
1
+ .skill {
2
+ margin-bottom: 35px;
3
+ position: relative;
4
+ overflow: hidden;
5
+
6
+ > p {
7
+ margin: 0;
8
+ font-size: 18px;
9
+ }
10
+
11
+ &:before {
12
+ width: 100%;
13
+ height: 5px;
14
+ content: "";
15
+ display: block;
16
+ position: absolute;
17
+ background: $light;
18
+ bottom: 0;
19
+ }
20
+ }
21
+
22
+ .skill-bar {
23
+ width: 100%;
24
+ height: 5px;
25
+ background: $primary;
26
+ display: block;
27
+ position: relative;
28
+
29
+ span {
30
+ position: absolute;
31
+ border-top: 5px solid inherit;
32
+ top: -30px;
33
+ padding: 0;
34
+ font-size: 18px;
35
+ padding: 3px 0;
36
+ font-weight: 500;
37
+ right: 0;
38
+ }
39
+ }
40
+
41
+ .skill-bar.skill-bar-secondary {
42
+ background: $secondary;
43
+ }
44
+
45
+ .skill-bar.skill-bar-success {
46
+ background: $success;
47
+ }
48
+
49
+ .skill-bar.skill-bar-info {
50
+ background: $info;
51
+ }
52
+
53
+ .skill-bar.skill-bar-warning {
54
+ background: $warning;
55
+ }
56
+
57
+ .skill-bar.skill-bar-danger {
58
+ background: $danger;
59
+ }
60
+
61
+ .skill-bar.skill-bar-light {
62
+ background: $light;
63
+ }
64
+
65
+ .skill-bar.skill-bar-dark {
66
+ background: $dark;
67
+ }
68
+
69
+ @for $i from 0 through 100 {
70
+ .skill-#{$i} {
71
+ width: percentage($i/100);
72
+ }
73
+ }
@@ -0,0 +1,47 @@
1
+ .timeline-body {
2
+ position: relative;
3
+ background-color: $light;
4
+ border-radius: 0 $rounded-borders $rounded-borders 0;
5
+ padding: 5px 0;
6
+
7
+ &:after {
8
+ // Left Border
9
+ content: "";
10
+ width: 4px;
11
+ height: 100%;
12
+ background-color: $primary;
13
+ position: absolute;
14
+ left: -4px;
15
+ top: 0;
16
+ }
17
+
18
+ .timeline-item {
19
+ position: relative;
20
+
21
+ &:after {
22
+ // Circle
23
+ content: "";
24
+ width: 20px;
25
+ height: 20px;
26
+ border-radius: 50%;
27
+ border: 4px solid $primary;
28
+ background-color: $light;
29
+ position: absolute;
30
+ left: -12px;
31
+ top: 8px;
32
+ z-index: 10;
33
+ }
34
+
35
+ .content {
36
+ margin: 40px;
37
+ padding-bottom: 20px;
38
+ border-bottom: 1px dashed $dark;
39
+
40
+ .date {
41
+ margin-top: -5px;
42
+ margin-bottom: 15px;
43
+ color: #6c757d;
44
+ }
45
+ }
46
+ }
47
+ }
@@ -0,0 +1,10 @@
1
+ $primary: #007bff;
2
+ $secondary: #6c757d;
3
+ $success: #28a745;
4
+ $info: #17a2b8;
5
+ $warning: #ffc107;
6
+ $danger: #dc3545;
7
+ $light: #f8f9fa;
8
+ $dark: #343a40;
9
+
10
+ $rounded-borders: 15px;
data/_sass/autumn.scss ADDED
@@ -0,0 +1,67 @@
1
+ // Syntax highlighting for code blocks
2
+ // Get it from here https://github.com/richleland/pygments-css
3
+
4
+ .highlight .w { color: #bbbbbb } /* Text.Whitespace */
5
+ .highlight .k { color: #0000aa } /* Keyword */
6
+ .highlight .m { color: #009999 } /* Literal.Number */
7
+ .highlight .s { color: #aa5500 } /* Literal.String */
8
+ .highlight .c { color: #aaaaaa; font-style: italic } /* Comment */
9
+ .highlight .cp { color: #4c8317 } /* Comment.Preproc */
10
+ .highlight .gd { color: #aa0000 } /* Generic.Deleted */
11
+ .highlight .gr { color: #aa0000 } /* Generic.Error */
12
+ .highlight .gi { color: #00aa00 } /* Generic.Inserted */
13
+ .highlight .go { color: #888888 } /* Generic.Output */
14
+ .highlight .gp { color: #555555 } /* Generic.Prompt */
15
+ .highlight .gt { color: #aa0000 } /* Generic.Traceback */
16
+ .highlight .kc { color: #0000aa } /* Keyword.Constant */
17
+ .highlight .kd { color: #0000aa } /* Keyword.Declaration */
18
+ .highlight .kn { color: #0000aa } /* Keyword.Namespace */
19
+ .highlight .kp { color: #0000aa } /* Keyword.Pseudo */
20
+ .highlight .kr { color: #0000aa } /* Keyword.Reserved */
21
+ .highlight .kt { color: #00aaaa } /* Keyword.Type */
22
+ .highlight .na { color: #1e90ff } /* Name.Attribute */
23
+ .highlight .nb { color: #00aaaa } /* Name.Builtin */
24
+ .highlight .nc { color: #00aa00 } /* Name.Class */
25
+ .highlight .no { color: #aa0000 } /* Name.Constant */
26
+ .highlight .nd { color: #888888 } /* Name.Decorator */
27
+ .highlight .nf { color: #00aa00 } /* Name.Function */
28
+ .highlight .nn { color: #00aaaa } /* Name.Namespace */
29
+ .highlight .nv { color: #aa0000 } /* Name.Variable */
30
+ .highlight .ow { color: #0000aa } /* Operator.Word */
31
+ .highlight .mb { color: #009999 } /* Literal.Number.Bin */
32
+ .highlight .mf { color: #009999 } /* Literal.Number.Float */
33
+ .highlight .mh { color: #009999 } /* Literal.Number.Hex */
34
+ .highlight .mi { color: #009999 } /* Literal.Number.Integer */
35
+ .highlight .mo { color: #009999 } /* Literal.Number.Oct */
36
+ .highlight .sa { color: #aa5500 } /* Literal.String.Affix */
37
+ .highlight .sb { color: #aa5500 } /* Literal.String.Backtick */
38
+ .highlight .sc { color: #aa5500 } /* Literal.String.Char */
39
+ .highlight .dl { color: #aa5500 } /* Literal.String.Delimiter */
40
+ .highlight .sd { color: #aa5500 } /* Literal.String.Doc */
41
+ .highlight .s2 { color: #aa5500 } /* Literal.String.Double */
42
+ .highlight .se { color: #aa5500 } /* Literal.String.Escape */
43
+ .highlight .sh { color: #aa5500 } /* Literal.String.Heredoc */
44
+ .highlight .si { color: #aa5500 } /* Literal.String.Interpol */
45
+ .highlight .sx { color: #aa5500 } /* Literal.String.Other */
46
+ .highlight .sr { color: #009999 } /* Literal.String.Regex */
47
+ .highlight .s1 { color: #aa5500 } /* Literal.String.Single */
48
+ .highlight .ss { color: #0000aa } /* Literal.String.Symbol */
49
+ .highlight .bp { color: #00aaaa } /* Name.Builtin.Pseudo */
50
+ .highlight .fm { color: #00aa00 } /* Name.Function.Magic */
51
+ .highlight .vc { color: #aa0000 } /* Name.Variable.Class */
52
+ .highlight .vg { color: #aa0000 } /* Name.Variable.Global */
53
+ .highlight .vi { color: #aa0000 } /* Name.Variable.Instance */
54
+ .highlight .vm { color: #aa0000 } /* Name.Variable.Magic */
55
+ .highlight .il { color: #009999 } /* Literal.Number.Integer.Long */
56
+ .highlight .ge { font-style: italic } /* Generic.Emph */
57
+ .highlight .gs { font-weight: bold } /* Generic.Strong */
58
+ .highlight .c1 { color: #aaaaaa; font-style: italic } /* Comment.Single */
59
+ .highlight .cs { color: #0000aa; font-style: italic } /* Comment.Special */
60
+ .highlight .ch { color: #aaaaaa; font-style: italic } /* Comment.Hashbang */
61
+ .highlight .cm { color: #aaaaaa; font-style: italic } /* Comment.Multiline */
62
+ .highlight .gh { color: #000080; font-weight: bold } /* Generic.Heading */
63
+ .highlight .gu { color: #800080; font-weight: bold } /* Generic.Subheading */
64
+ .highlight .ni { color: #880000; font-weight: bold } /* Name.Entity */
65
+ .highlight .nt { color: #1e90ff; font-weight: bold } /* Name.Tag */
66
+ .highlight .err { color: #FF0000 } /* Error */
67
+ .highlight .cpf { color: #aaaaaa; font-style: italic } /* Comment.PreprocFile */
@@ -0,0 +1,17 @@
1
+ @charset "utf-8";
2
+
3
+ // Custom Fonts
4
+ @import url('https://fonts.googleapis.com/css?family=Poppins');
5
+
6
+ // Import partials from `sass_dir` (defaults to `_sass`)
7
+ @import "variables",
8
+ "404",
9
+ "autumn",
10
+ "base",
11
+ "blog",
12
+ "footer",
13
+ "landing",
14
+ "navbar",
15
+ "projects",
16
+ "skills",
17
+ "timeline";
@@ -0,0 +1,3 @@
1
+ ---
2
+ ---
3
+ @import "portfolYOU";
Binary file
@@ -0,0 +1,11 @@
1
+ $(function(){
2
+
3
+ $('.project.card').hover(
4
+ // trigger when mouse hover
5
+ function(){ $(this).animate({ marginTop: "-=1%", marginBottom: "+=1%" }, 200) },
6
+
7
+ // trigger when mouse out
8
+ function(){ $(this).animate({ marginTop: "+=1%", marginBottom: "-=1%" }, 200) }
9
+ );
10
+
11
+ });
@@ -0,0 +1,26 @@
1
+ ---
2
+ ---
3
+
4
+ function get_tools(repo_name) {
5
+ fetch(`https://api.github.com/repos/{{ site.github.owner_name }}/${repo_name}/topics`, {
6
+ headers: {
7
+ Accept: "application/vnd.github.mercy-preview+json"
8
+ }
9
+ })
10
+ .then(response => response.json())
11
+ .then(data => data.names.forEach(tool => {
12
+
13
+ var toolSpan = document.createElement("span");
14
+ toolSpan.innerHTML = tool;
15
+ toolSpan.classList.add("badge");
16
+ toolSpan.classList.add("badge-pill");
17
+ toolSpan.classList.add("text-primary");
18
+ toolSpan.classList.add("border");
19
+ toolSpan.classList.add("border-primary");
20
+
21
+ var parent = document.getElementById((`${repo_name}-tools`));
22
+ parent.appendChild(toolSpan);
23
+ parent.appendChild(document.createTextNode(" "));
24
+
25
+ }))
26
+ }
metadata ADDED
@@ -0,0 +1,170 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: portfolyou-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 2.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Youssef Raafat
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-01-17 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jekyll-gist
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.5'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.5'
41
+ - !ruby/object:Gem::Dependency
42
+ name: jekyll-github-metadata
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '2.12'
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '2.12'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jekyll-include-cache
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '0.1'
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '0.1'
69
+ - !ruby/object:Gem::Dependency
70
+ name: jekyll-paginate
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: jemoji
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '0.11'
90
+ type: :runtime
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '0.11'
97
+ description:
98
+ email:
99
+ - YoussefRaafatNasry@gmail.com
100
+ executables: []
101
+ extensions: []
102
+ extra_rdoc_files: []
103
+ files:
104
+ - LICENSE
105
+ - README.md
106
+ - _includes/404.html
107
+ - _includes/about/skills.html
108
+ - _includes/about/timeline.html
109
+ - _includes/blog/index.html
110
+ - _includes/blog/search.html
111
+ - _includes/blog/tags.html
112
+ - _includes/elements/button.html
113
+ - _includes/elements/carousel.html
114
+ - _includes/elements/figure.html
115
+ - _includes/elements/highlight.html
116
+ - _includes/elements/list.html
117
+ - _includes/elements/video.html
118
+ - _includes/footer.html
119
+ - _includes/head.html
120
+ - _includes/landing.html
121
+ - _includes/navbar.html
122
+ - _includes/projects/index.html
123
+ - _includes/projects/project-card.html
124
+ - _includes/scripts.html
125
+ - _includes/social.html
126
+ - _layouts/default.html
127
+ - _layouts/element.html
128
+ - _layouts/page.html
129
+ - _layouts/post.html
130
+ - _sass/_404.scss
131
+ - _sass/_base.scss
132
+ - _sass/_blog.scss
133
+ - _sass/_footer.scss
134
+ - _sass/_landing.scss
135
+ - _sass/_navbar.scss
136
+ - _sass/_projects.scss
137
+ - _sass/_skills.scss
138
+ - _sass/_timeline.scss
139
+ - _sass/_variables.scss
140
+ - _sass/autumn.scss
141
+ - _sass/portfolYOU.scss
142
+ - assets/css/style.scss
143
+ - assets/favicon.ico
144
+ - assets/js/card-animation.js
145
+ - assets/js/remote-projects.js
146
+ homepage: https://github.com/YoussefRaafatNasry/portfolYOU
147
+ licenses:
148
+ - MIT
149
+ metadata:
150
+ plugin_type: theme
151
+ post_install_message:
152
+ rdoc_options: []
153
+ require_paths:
154
+ - lib
155
+ required_ruby_version: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: '0'
160
+ required_rubygems_version: !ruby/object:Gem::Requirement
161
+ requirements:
162
+ - - ">="
163
+ - !ruby/object:Gem::Version
164
+ version: '0'
165
+ requirements: []
166
+ rubygems_version: 3.0.6
167
+ signing_key:
168
+ specification_version: 4
169
+ summary: A beautiful portfolio Jekyll theme.
170
+ test_files: []