jekyll-github-pages 0.1.6 → 0.1.8
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.
- checksums.yaml +4 -4
- data/_config.yml +3 -5
- data/_includes/head.html +1 -0
- data/_includes/intro.html +3 -2
- data/_includes/vendor-scripts.html +0 -1
- data/_layouts/default.html +1 -7
- data/_sass/_base.scss +0 -1
- data/_sass/_bg.scss +1 -1
- data/_sass/_header.scss +1 -9
- data/_sass/_intro.scss +55 -22
- data/_sass/_social-links.scss +14 -14
- data/_sass/_vars.scss +6 -4
- data/_sass/main.scss +0 -2
- data/assets/css/main.css +1 -1
- data/assets/icons/favicon_io/android-chrome-192x192.png +0 -0
- data/assets/icons/favicon_io/android-chrome-512x512.png +0 -0
- data/assets/icons/favicon_io/apple-touch-icon.png +0 -0
- data/assets/icons/favicon_io/favicon-16x16.png +0 -0
- data/assets/icons/favicon_io/favicon-32x32.png +0 -0
- data/assets/icons/favicon_io/favicon.ico +0 -0
- data/assets/js/main.js +1 -1
- metadata +7 -7
- data/_includes/about.html +0 -0
- data/_sass/_about.scss +0 -0
- data/_sass/_particles.scss +0 -18
- data/assets/js/vendor/particles.js +0 -1541
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9caaf1de7a875875ab20919adb29ac02e59a45159f69ca1eafa70cfbf0688fe6
|
|
4
|
+
data.tar.gz: a66b63f5b54c171eeb8a2f82daa73d1987658c4f6767bbffc08c097969740516
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1ec90a5361f0f5842472d575a7bcfeaeda73fef5e7a22213ff82636a6810a25ffa1ab92dd4073bc1d5e65036ef75569f0ec640225fe263a339127fac700ba101
|
|
7
|
+
data.tar.gz: 36e230a22bba9c9aac229d08ca555bea20fd5f810980231201407d40b23b304d3b5c7002bfb8dd182086143c49be0aefbfbdb495c8a0bbea802ba0cbb6b0cf6d
|
data/_config.yml
CHANGED
|
@@ -3,7 +3,8 @@ meta:
|
|
|
3
3
|
description: Dynamic and customizable jekyll theme
|
|
4
4
|
|
|
5
5
|
user:
|
|
6
|
-
username:
|
|
6
|
+
username-prefix: its
|
|
7
|
+
username: '<span style="color: #4c6349;">f</span>ran<span style="color: #4c6349;">r</span>ose'
|
|
7
8
|
name: Mehdi Rafee
|
|
8
9
|
short-description: '<span style="color: #d1443d;">enthusiastic</span> • <span style="color: #e38b3d;">adventurous</span>'
|
|
9
10
|
title: programmer
|
|
@@ -15,9 +16,6 @@ user:
|
|
|
15
16
|
<br>Anyhow, let's get going with the professional button-pressing, shall we?
|
|
16
17
|
|
|
17
18
|
footer:
|
|
18
|
-
quote: 'Never give up without a fight. <span style="color: #
|
|
19
|
+
quote: 'Never give up without a fight. <span style="color: #857676;">&General Iroh</span>'
|
|
19
20
|
|
|
20
|
-
particles: true
|
|
21
21
|
theme: jekyll-github-pages
|
|
22
|
-
|
|
23
|
-
exclude: ['package.json', 'src', 'node_modules', 'vendor']
|
data/_includes/head.html
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/icons/favicon_io/favicon-16x16.png' | relative_url }}">
|
|
11
11
|
<link rel="manifest" href="{{ '/assets/icons/favicon_io/site.webmanifest' | relative_url }}">
|
|
12
12
|
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
|
13
|
+
<link rel="stylesheet" href="{{ '/assets/css/custom.css' | relative_url }}">
|
|
13
14
|
{% include fonts.html %}
|
|
14
15
|
{% include vendor-scripts.html %}
|
|
15
16
|
</head>
|
data/_includes/intro.html
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
<h1 class="intro">
|
|
2
|
-
<span class="user-username" data-
|
|
3
|
-
<span class="user-
|
|
2
|
+
<span class="user-username-prefix" data-postfix="{{ site.user.name }}">{{ site.user.username-prefix }}</span>
|
|
3
|
+
<span class="user-username">{{ site.user.username }}</span>
|
|
4
|
+
<span class="user-name" data-prefix="{{ site.user.username-prefix }}">{{ site.user.name }}</span>
|
|
4
5
|
<span class="user-title">{{ site.user.title }}</span>
|
|
5
6
|
<span class="user-short-description">{{ site.user.short-description }}</span>
|
|
6
7
|
</h1>
|
data/_layouts/default.html
CHANGED
|
@@ -2,16 +2,10 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
{% include head.html %}
|
|
4
4
|
<body>
|
|
5
|
-
|
|
6
|
-
<div id="particles-js" aria-hidden="true"></div>
|
|
7
|
-
{% else %}
|
|
8
|
-
<div id="solid-bg" aria-hidden="true"></div>
|
|
9
|
-
{% endif %}
|
|
10
|
-
|
|
5
|
+
<div id="solid-bg" aria-hidden="true"></div>
|
|
11
6
|
<div class="site-wrapper">
|
|
12
7
|
{% include header.html %}
|
|
13
8
|
<main id="main" role="main" class="site-main">
|
|
14
|
-
{% include about.html %}
|
|
15
9
|
{{ content }}
|
|
16
10
|
</main>
|
|
17
11
|
{% include footer.html %}
|
data/_sass/_base.scss
CHANGED
data/_sass/_bg.scss
CHANGED
data/_sass/_header.scss
CHANGED
|
@@ -1,10 +1,3 @@
|
|
|
1
|
-
$cut: 720px !default;
|
|
2
|
-
$link-color: #ffffff !default; // link/icon foreground
|
|
3
|
-
$bg-color: transparent !default;
|
|
4
|
-
|
|
5
|
-
$icon-size-sm: 1.25rem !default; // ~20px
|
|
6
|
-
$icon-size-lg: 1.875rem !default; // ~30px
|
|
7
|
-
|
|
8
1
|
/* Canvas / hero wrapper (keeps header vertically centered when used as hero) */
|
|
9
2
|
.canvas {
|
|
10
3
|
display: flex;
|
|
@@ -13,14 +6,13 @@ $icon-size-lg: 1.875rem !default; // ~30px
|
|
|
13
6
|
align-items: center;
|
|
14
7
|
text-align: center;
|
|
15
8
|
padding: 2rem 1rem; /* breathing room on small screens */
|
|
16
|
-
background:
|
|
9
|
+
background: transparent;
|
|
17
10
|
box-sizing: border-box;
|
|
18
11
|
}
|
|
19
12
|
|
|
20
13
|
/* Main header block */
|
|
21
14
|
.header {
|
|
22
15
|
font-family: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
23
|
-
color: $link-color;
|
|
24
16
|
position: relative; /* stays in flow, allows z-indexing */
|
|
25
17
|
z-index: 1; /* sits above particle canvas (z-index:0) */
|
|
26
18
|
margin: 0 auto;
|
data/_sass/_intro.scss
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
-
$user-username-
|
|
2
|
-
$user-
|
|
3
|
-
$user-
|
|
4
|
-
$user-
|
|
5
|
-
$user-description
|
|
1
|
+
$color-user-username-prefix: #949494;
|
|
2
|
+
$color-user-username: #fff;
|
|
3
|
+
$color-user-name: #949494;
|
|
4
|
+
$color-user-title: #668062;
|
|
5
|
+
$color-user-short-description: #668062;
|
|
6
|
+
$color-user-description: #b0a590;
|
|
7
|
+
|
|
8
|
+
$size-user-username-prefix: clamp(0.1rem, 0.1vw + 1.0rem, 2.0rem);
|
|
9
|
+
$size-user-username: clamp(1.0rem, 1.0vw + 2.9rem, 4.5rem);
|
|
10
|
+
$size-user-name: clamp(0.1rem, 0.1vw + 1.0rem, 2.0rem);
|
|
11
|
+
$size-user-title: clamp(0.1rem, 0.6vw + 0.8rem, 1.5rem);
|
|
12
|
+
$size-user-short-description: clamp(1rem, 1.6vw + 0.8rem, 1.5rem);
|
|
13
|
+
$size-user-description: clamp(0.9rem, 1.2vw + 0.8rem, 1.2rem);
|
|
6
14
|
|
|
7
15
|
/* Main header block */
|
|
8
16
|
.intro {
|
|
@@ -17,40 +25,65 @@ $user-description-color: #e3a36f;
|
|
|
17
25
|
white-space: nowrap;
|
|
18
26
|
margin-top: 5rem;
|
|
19
27
|
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
font-family: 'Amarante';
|
|
23
|
-
display: inline-block;
|
|
28
|
+
.user-username-prefix {
|
|
29
|
+
font-family: 'Averia Serif Libre';
|
|
24
30
|
line-height: 1.05;
|
|
25
31
|
font-weight: 700;
|
|
26
|
-
|
|
27
|
-
|
|
32
|
+
display: inline-block;
|
|
33
|
+
color: $color-user-username-prefix;
|
|
34
|
+
/* fluid size: min 1.5rem, preferred with viewport, max 2.6rem */
|
|
35
|
+
font-size: $size-user-username-prefix;
|
|
36
|
+
/* small vertical tweak if you want it raised/lowered: */
|
|
37
|
+
transform: translateY(0.35rem);
|
|
38
|
+
vertical-align: baseline; /* or text-top/text-bottom */
|
|
28
39
|
|
|
29
40
|
&::before {
|
|
30
|
-
content: attr(data-
|
|
41
|
+
content: attr(data-postfix); /* invisible spacer */
|
|
31
42
|
visibility: hidden;
|
|
32
43
|
white-space: nowrap;
|
|
33
44
|
/* match typography of the visible name so widths match */
|
|
34
45
|
font-family: 'Averia Serif Libre';
|
|
35
46
|
font-weight: 700;
|
|
36
47
|
line-height: 1.05;
|
|
37
|
-
font-size:
|
|
48
|
+
font-size: $size-user-name;
|
|
38
49
|
margin-right: 0.3rem;
|
|
39
50
|
display: inline-block;
|
|
40
51
|
}
|
|
41
52
|
}
|
|
42
53
|
|
|
54
|
+
.user-username {
|
|
55
|
+
font-family: 'Amarante';
|
|
56
|
+
display: inline-block;
|
|
57
|
+
line-height: 1.05;
|
|
58
|
+
font-weight: 700;
|
|
59
|
+
color: $color-user-username;
|
|
60
|
+
font-size: $size-user-username;
|
|
61
|
+
}
|
|
62
|
+
|
|
43
63
|
.user-name {
|
|
44
64
|
font-family: 'Averia Serif Libre';
|
|
45
65
|
line-height: 1.05;
|
|
46
66
|
font-weight: 700;
|
|
47
67
|
display: inline-block;
|
|
48
|
-
color: $user-name
|
|
68
|
+
color: $color-user-name;
|
|
49
69
|
/* fluid size: min 1.5rem, preferred with viewport, max 2.6rem */
|
|
50
|
-
font-size:
|
|
70
|
+
font-size: $size-user-name;
|
|
51
71
|
/* small vertical tweak if you want it raised/lowered: */
|
|
52
|
-
transform:
|
|
72
|
+
transform: translateY(0.35rem);
|
|
53
73
|
vertical-align: baseline; /* or text-top/text-bottom */
|
|
74
|
+
|
|
75
|
+
&::after {
|
|
76
|
+
content: attr(data-prefix); /* invisible spacer */
|
|
77
|
+
visibility: hidden;
|
|
78
|
+
white-space: nowrap;
|
|
79
|
+
/* match typography of the visible name so widths match */
|
|
80
|
+
font-family: 'Averia Serif Libre';
|
|
81
|
+
font-weight: 700;
|
|
82
|
+
line-height: 1.05;
|
|
83
|
+
font-size: $size-user-username-prefix;
|
|
84
|
+
margin-left: 0.3rem;
|
|
85
|
+
display: inline-block;
|
|
86
|
+
}
|
|
54
87
|
}
|
|
55
88
|
|
|
56
89
|
.user-title {
|
|
@@ -59,8 +92,8 @@ $user-description-color: #e3a36f;
|
|
|
59
92
|
margin: 0.5rem 0 0;
|
|
60
93
|
line-height: 1.15;
|
|
61
94
|
font-weight: 400;
|
|
62
|
-
color: $user-title
|
|
63
|
-
font-size:
|
|
95
|
+
color: $color-user-title;
|
|
96
|
+
font-size: $size-user-title;
|
|
64
97
|
}
|
|
65
98
|
|
|
66
99
|
.user-short-description {
|
|
@@ -69,8 +102,8 @@ $user-description-color: #e3a36f;
|
|
|
69
102
|
margin: 1.9rem 0 0;
|
|
70
103
|
line-height: 1.15;
|
|
71
104
|
font-weight: 400;
|
|
72
|
-
color: $user-short-description
|
|
73
|
-
font-size:
|
|
105
|
+
color: $color-user-short-description;
|
|
106
|
+
font-size: $size-user-short-description;
|
|
74
107
|
}
|
|
75
108
|
}
|
|
76
109
|
|
|
@@ -81,7 +114,7 @@ $user-description-color: #e3a36f;
|
|
|
81
114
|
margin: 3rem auto 0; // centers content below header
|
|
82
115
|
line-height: 2.0; // more comfortable for long text
|
|
83
116
|
font-weight: 400;
|
|
84
|
-
font-size:
|
|
117
|
+
font-size: $size-user-description;
|
|
85
118
|
text-align: justify !important;
|
|
86
|
-
color: $user-description
|
|
119
|
+
color: $color-user-description;
|
|
87
120
|
}
|
data/_sass/_social-links.scss
CHANGED
|
@@ -22,32 +22,32 @@
|
|
|
22
22
|
display: inline-flex;
|
|
23
23
|
align-items: center;
|
|
24
24
|
justify-content: center;
|
|
25
|
-
color: $link
|
|
26
|
-
width: $icon-
|
|
27
|
-
height: $icon-
|
|
28
|
-
font-size: $icon-
|
|
29
|
-
padding:
|
|
30
|
-
margin: 0.
|
|
31
|
-
border-radius:
|
|
25
|
+
color: $color-link;
|
|
26
|
+
width: $size-icon-small;
|
|
27
|
+
height: $size-icon-small;
|
|
28
|
+
font-size: $size-icon-small;
|
|
29
|
+
padding: 1.15rem; /* creates a comfortable touch target */
|
|
30
|
+
margin: 0.1rem;
|
|
31
|
+
border-radius: 0%;
|
|
32
32
|
background: transparent;
|
|
33
33
|
transition: color 180ms ease, background-color 180ms ease, transform 120ms ease;
|
|
34
34
|
line-height: 1;
|
|
35
35
|
|
|
36
36
|
&:hover,
|
|
37
37
|
&:focus {
|
|
38
|
-
color:
|
|
39
|
-
background:
|
|
40
|
-
transform: translateY(-3px);
|
|
38
|
+
color: #fff;
|
|
39
|
+
background: $color-main;
|
|
40
|
+
transform: translateY(-3px) scale(1.05);
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
&:active {
|
|
44
44
|
transform: translateY(-1px) scale(0.99);
|
|
45
45
|
}
|
|
46
46
|
|
|
47
|
-
@media (min-width: #{$cut}) {
|
|
48
|
-
width: $icon-
|
|
49
|
-
height: $icon-
|
|
50
|
-
font-size: $icon-
|
|
47
|
+
@media (min-width: #{$size-cut}) {
|
|
48
|
+
width: $size-icon-large;
|
|
49
|
+
height: $size-icon-large;
|
|
50
|
+
font-size: $size-icon-large;
|
|
51
51
|
}
|
|
52
52
|
}
|
|
53
53
|
}
|
data/_sass/_vars.scss
CHANGED
data/_sass/main.scss
CHANGED
data/assets/css/main.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
2
2
|
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}details,main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline dotted}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}
|
|
3
3
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
4
|
-
html{line-height:1.15;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline dotted}b{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}:root{--color-text:#555;--color-heading:#333;--base-font-size:100%;--base-line-height:1.5;--scale-h1:2.5rem;--scale-h2:2rem;--scale-h3:1.5rem;--scale-h4:1rem}*,::after,::before{box-sizing:border-box}body,html{height:100%;min-height:100vh;margin:0;font-size:var(--base-font-size);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.site-wrapper,body{display:flex;flex-direction:column}body{min-height:100%;padding:0;line-height:var(--base-line-height);color:var(--color-text);font-family:"Antic Slab",Georgia,"Times New Roman",serif;font-weight:400;background:0 0}main{flex:1}h1,h2,h3,h4,strong{margin-top:1em;padding-top:1em;line-height:1.25;color:var(--color-heading);font-weight:700}h1{font-size:var(--scale-h1)}h2{font-size:var(--scale-h2)}h3{font-size:var(--scale-h3)}h4{font-size:var(--scale-h4)}ol,ul{padding-left:2.5rem}figure,ol,p,ul{margin:1em 0}a img{border:0;max-width:100%;height:auto;display:inline-block}sub,sup{line-height:0}sup{vertical-align:super}sub{vertical-align:sub}.site-wrapper{position:relative;z-index:1;min-height:100vh}.site-main{flex:1 0 auto}.canvas{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:2rem 1rem;background:0 0;box-sizing:border-box}.header,.intro{
|
|
4
|
+
html{line-height:1.15;-webkit-text-size-adjust:100%}article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline dotted}b{font-weight:bolder}small{font-size:80%}sub,sup{font-size:75%;position:relative}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{color:inherit;display:table;max-width:100%;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio],legend{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}[hidden],template{display:none}:root{--color-text:#555;--color-heading:#333;--base-font-size:100%;--base-line-height:1.5;--scale-h1:2.5rem;--scale-h2:2rem;--scale-h3:1.5rem;--scale-h4:1rem}*,::after,::before{box-sizing:border-box}body,html{height:100%;min-height:100vh;margin:0;font-size:var(--base-font-size);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.site-wrapper,body{display:flex;flex-direction:column}body{min-height:100%;padding:0;line-height:var(--base-line-height);color:var(--color-text);font-family:"Antic Slab",Georgia,"Times New Roman",serif;font-weight:400;background:0 0}main{flex:1}h1,h2,h3,h4,strong{margin-top:1em;padding-top:1em;line-height:1.25;color:var(--color-heading);font-weight:700}h1{font-size:var(--scale-h1)}h2{font-size:var(--scale-h2)}h3{font-size:var(--scale-h3)}h4{font-size:var(--scale-h4)}ol,ul{padding-left:2.5rem}figure,ol,p,ul{margin:1em 0}a img{border:0;max-width:100%;height:auto;display:inline-block}sub,sup{line-height:0}sup{vertical-align:super}sub{vertical-align:sub}.site-wrapper{position:relative;z-index:1;min-height:100vh}.site-main{flex:1 0 auto}.canvas{display:flex;flex-direction:column;justify-content:center;align-items:center;text-align:center;padding:2rem 1rem;background:0 0;box-sizing:border-box}.header,.intro{position:relative;z-index:1;max-width:900px;width:100%;padding:.5rem 1rem}.header{font-family:"Montserrat",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;margin:0 auto}.intro{font-family:Roboto,"Helvetica Neue",Arial,sans-serif;color:#fff;text-align:center;white-space:nowrap;margin-top:5rem}.intro .user-username,.intro .user-username-prefix{display:inline-block;line-height:1.05;font-weight:700}.intro .user-username-prefix{font-family:"Averia Serif Libre";color:#949494;font-size:clamp(.1rem,.1vw + 1rem,2rem);transform:translateY(.35rem);vertical-align:baseline}.intro .user-username-prefix::before{content:attr(data-postfix);visibility:hidden;white-space:nowrap;margin-right:.3rem}.intro .user-username{font-family:"Amarante";color:#fff;font-size:clamp(1rem,1vw + 2.9rem,4.5rem)}.intro .user-name,.intro .user-name::after,.intro .user-username-prefix::before{font-family:"Averia Serif Libre";font-weight:700;line-height:1.05;font-size:clamp(.1rem,.1vw + 1rem,2rem);display:inline-block}.intro .user-name{color:#949494;transform:translateY(.35rem);vertical-align:baseline}.intro .user-name::after{content:attr(data-prefix);visibility:hidden;white-space:nowrap;margin-left:.3rem}.intro .user-short-description,.intro .user-title,.user-description{font-family:"Caesar Dressing";display:block;margin:.5rem 0 0;line-height:1.15;font-weight:400;color:#668062;font-size:clamp(.1rem,.6vw + .8rem,1.5rem)}.intro .user-short-description,.user-description{font-family:"Barriecito";margin:1.9rem 0 0;font-size:clamp(1rem,1.6vw + .8rem,1.5rem)}.user-description{font-family:"Roboto Mono","Ubuntu Mono";max-width:650px;margin:3rem auto 0;line-height:2;font-size:clamp(.9rem,1.2vw + .8rem,1.2rem);text-align:justify!important;color:#b0a590}.social-links{display:flex;gap:.375rem;justify-content:center;align-items:center}.social-links .icon,.social-links a{display:inline-flex;align-items:center;justify-content:center;background:0 0;line-height:1}.social-links a{border:0;padding:0;margin:0;color:inherit;text-decoration:none}.social-links .icon{color:#fff;width:1.25rem;height:1.25rem;font-size:1.25rem;padding:1.15rem;margin:.1rem;border-radius:0;transition:color 180ms ease,background-color 180ms ease,transform 120ms ease}.social-links .icon:focus,.social-links .icon:hover{color:#fff;background:#050a05;transform:translateY(-3px) scale(1.05)}.social-links .icon:active{transform:translateY(-1px) scale(.99)}@media (min-width:720px){.social-links .icon{width:1.875rem;height:1.875rem;font-size:1.875rem}}#solid-bg{position:fixed;top:0;left:0;width:100%;height:100%;z-index:-1;background:#050a05;background-repeat:no-repeat;background-size:cover;background-attachment:fixed}.footer{z-index:1;padding:5px 0;margin-top:0;text-align:center;color:#fff}.footer .footer-quote{font-family:"Ubuntu Mono";display:block;line-height:1.15;font-weight:400;color:inherit;font-size:clamp(.1rem,.5vw + .4rem,1.5rem)}
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/assets/js/main.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
document.addEventListener("DOMContentLoaded",function(){if("undefined"!=typeof SweetScroll)try{new SweetScroll({})}catch(e){console.warn("SweetScroll init failed:",e)}
|
|
1
|
+
document.addEventListener("DOMContentLoaded",function(){if("undefined"!=typeof SweetScroll)try{new SweetScroll({})}catch(e){console.warn("SweetScroll init failed:",e)}},!1);
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-github-pages
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Francis Rosinante
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2025-08-22 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: jekyll
|
|
@@ -51,6 +52,7 @@ dependencies:
|
|
|
51
52
|
- - "~>"
|
|
52
53
|
- !ruby/object:Gem::Version
|
|
53
54
|
version: '13.3'
|
|
55
|
+
description:
|
|
54
56
|
email:
|
|
55
57
|
- francis.rosinante@gmail.com
|
|
56
58
|
executables: []
|
|
@@ -61,7 +63,6 @@ files:
|
|
|
61
63
|
- README.md
|
|
62
64
|
- _config.yml
|
|
63
65
|
- _data/social-links.yml
|
|
64
|
-
- _includes/about.html
|
|
65
66
|
- _includes/fonts.html
|
|
66
67
|
- _includes/footer.html
|
|
67
68
|
- _includes/head.html
|
|
@@ -71,14 +72,12 @@ files:
|
|
|
71
72
|
- _includes/social-links.html
|
|
72
73
|
- _includes/vendor-scripts.html
|
|
73
74
|
- _layouts/default.html
|
|
74
|
-
- _sass/_about.scss
|
|
75
75
|
- _sass/_base.scss
|
|
76
76
|
- _sass/_bg.scss
|
|
77
77
|
- _sass/_footer.scss
|
|
78
78
|
- _sass/_header.scss
|
|
79
79
|
- _sass/_intro.scss
|
|
80
80
|
- _sass/_normalize.scss
|
|
81
|
-
- _sass/_particles.scss
|
|
82
81
|
- _sass/_social-links.scss
|
|
83
82
|
- _sass/_vars.scss
|
|
84
83
|
- _sass/main.scss
|
|
@@ -121,13 +120,13 @@ files:
|
|
|
121
120
|
- assets/icons/favicon_io/favicon.ico
|
|
122
121
|
- assets/icons/favicon_io/site.webmanifest
|
|
123
122
|
- assets/js/main.js
|
|
124
|
-
- assets/js/vendor/particles.js
|
|
125
123
|
- assets/js/vendor/sweet-scroll.min.js
|
|
126
124
|
- lib/jekyll-github-pages.rb
|
|
127
125
|
homepage: https://github.com/itsfranrose/jekyll-github-pages
|
|
128
126
|
licenses:
|
|
129
127
|
- MIT
|
|
130
128
|
metadata: {}
|
|
129
|
+
post_install_message:
|
|
131
130
|
rdoc_options: []
|
|
132
131
|
require_paths:
|
|
133
132
|
- lib
|
|
@@ -142,7 +141,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
141
|
- !ruby/object:Gem::Version
|
|
143
142
|
version: '0'
|
|
144
143
|
requirements: []
|
|
145
|
-
rubygems_version: 3.
|
|
144
|
+
rubygems_version: 3.3.26
|
|
145
|
+
signing_key:
|
|
146
146
|
specification_version: 4
|
|
147
147
|
summary: This is a custom jekyll theme originally intended for my various github pages
|
|
148
148
|
use
|
data/_includes/about.html
DELETED
|
File without changes
|
data/_sass/_about.scss
DELETED
|
File without changes
|
data/_sass/_particles.scss
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
/* particles background: fixed full-bleed, sits behind content */
|
|
2
|
-
#particles-js {
|
|
3
|
-
position: fixed;
|
|
4
|
-
inset: 0; /* top/right/bottom/left:0 */
|
|
5
|
-
width: 100%;
|
|
6
|
-
height: 100%;
|
|
7
|
-
z-index: 0; /* background layer */
|
|
8
|
-
pointer-events: none; /* allow clicks through */
|
|
9
|
-
|
|
10
|
-
/* fallback background color (var from _vars.scss or _base) */
|
|
11
|
-
background: $main;
|
|
12
|
-
background-repeat: no-repeat;
|
|
13
|
-
background-size: cover;
|
|
14
|
-
|
|
15
|
-
/* improve painting isolation */
|
|
16
|
-
contain: paint; /* isolates painting to this element in supporting browsers */
|
|
17
|
-
-webkit-transform: translateZ(0); /* hint to compositor (may help in some UAs) */
|
|
18
|
-
}
|