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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 51de57d0a7e19e182e8172e567a00e7017b3f6d49d6debbe0e3710e8f064e225
4
- data.tar.gz: cfa1140e7f2db2954b0bd6b7e5ee20c50c3b59d70a5b02998439653d05618003
3
+ metadata.gz: 9caaf1de7a875875ab20919adb29ac02e59a45159f69ca1eafa70cfbf0688fe6
4
+ data.tar.gz: a66b63f5b54c171eeb8a2f82daa73d1987658c4f6767bbffc08c097969740516
5
5
  SHA512:
6
- metadata.gz: b6428bd5a9090831fd90ab96bd934459a53e7f8dd8f11c39759e1d34455163d592add0fbb04039c09874e7b98e2466f9252c32c235689eba395134e7e942d436
7
- data.tar.gz: b7f9616a19237a9ce71397f91edd323df49dc9de186a23e59fae800d17450a9417301191b7e18fb9da021ec2d39719d580c797f5ebae2825a67af9a67600c838
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: '<span style="color: #e9a467;">f</span>ran<span style="color: #de7873;">r</span>ose'
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: #9e7b52;">&General Iroh</span>'
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-name="{{ site.user.name }}">{{ site.user.username }}</span>
3
- <span class="user-name">{{ site.user.name }}</span>
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>
@@ -1,3 +1,2 @@
1
1
  <!-- Auto-generated local vendor scripts -->
2
- <script src="{{ "/assets/js/vendor/particles.js" | relative_url }}"></script>
3
2
  <script src="{{ "/assets/js/vendor/sweet-scroll.min.js" | relative_url }}"></script>
@@ -2,16 +2,10 @@
2
2
  <html lang="en">
3
3
  {% include head.html %}
4
4
  <body>
5
- {% if site.particles %}
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
@@ -93,7 +93,6 @@ sup { vertical-align: super; }
93
93
  sub { vertical-align: sub; }
94
94
 
95
95
 
96
- /* ensure content sits above background particles */
97
96
  .site-wrapper {
98
97
  position: relative;
99
98
  z-index: 1;
data/_sass/_bg.scss CHANGED
@@ -6,7 +6,7 @@
6
6
  height: 100%;
7
7
  z-index: -1;
8
8
 
9
- background: $main;
9
+ background: $color-main;
10
10
  background-repeat: no-repeat;
11
11
  background-size: cover;
12
12
  background-attachment: fixed;
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: $bg-color;
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-color: #fff6e8;
2
- $user-name-color: #d1ebd4;
3
- $user-title-color: #eac7ff;
4
- $user-short-description-color: #6ad4a8;
5
- $user-description-color: #e3a36f;
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
- /* Title & description */
21
- .user-username {
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
- color: $user-username-color;
27
- font-size: clamp(1.0rem, 1.0vw + 2.9rem, 4.5rem);
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-name); /* invisible spacer */
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: clamp(0.1rem, 0.1vw + 1.0rem, 2.0rem);
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-color;
68
+ color: $color-user-name;
49
69
  /* fluid size: min 1.5rem, preferred with viewport, max 2.6rem */
50
- font-size: clamp(0.1rem, 0.1vw + 1.0rem, 2.0rem);
70
+ font-size: $size-user-name;
51
71
  /* small vertical tweak if you want it raised/lowered: */
52
- transform: translateX(0.3rem) translateY(0.35rem);
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-color;
63
- font-size: clamp(0.1rem, 0.6vw + 0.8rem, 1.5rem);
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-color;
73
- font-size: clamp(1rem, 1.6vw + 0.8rem, 1.5rem);
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: clamp(0.9rem, 1.2vw + 0.8rem, 1.2rem);
117
+ font-size: $size-user-description;
85
118
  text-align: justify !important;
86
- color: $user-description-color;
119
+ color: $color-user-description;
87
120
  }
@@ -22,32 +22,32 @@
22
22
  display: inline-flex;
23
23
  align-items: center;
24
24
  justify-content: center;
25
- color: $link-color;
26
- width: $icon-size-sm;
27
- height: $icon-size-sm;
28
- font-size: $icon-size-sm;
29
- padding: 0.5rem; /* creates a comfortable touch target */
30
- margin: 0.25rem;
31
- border-radius: 50%;
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: $main;
39
- background: #fff;
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-size-lg;
49
- height: $icon-size-lg;
50
- font-size: $icon-size-lg;
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
@@ -1,4 +1,6 @@
1
- $main: #161d17;
2
- $sec: #4B5664;
3
- $purple: #54516A;
4
- $cut: 768px;
1
+ $color-main: #050a05;
2
+ $color-link: #fff !default;
3
+
4
+ $size-cut: 720px;
5
+ $size-icon-small: 1.25rem !default;
6
+ $size-icon-large: 1.875rem !default;
data/_sass/main.scss CHANGED
@@ -5,7 +5,5 @@
5
5
  @import 'header';
6
6
  @import 'intro';
7
7
  @import 'social-links';
8
- @import 'particles';
9
8
  @import 'bg';
10
- @import 'about';
11
9
  @import 'footer';
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{color:#fff;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;text-align:center;white-space:nowrap;margin-top:5rem}.intro .user-username{font-family:"Amarante";display:inline-block;line-height:1.05;font-weight:700;color:#fff6e8;font-size:clamp(1rem,1vw + 2.9rem,4.5rem)}.intro .user-name,.intro .user-username::before{font-family:"Averia Serif Libre";line-height:1.05;font-weight:700;display:inline-block;font-size:clamp(.1rem,.1vw + 1rem,2rem)}.intro .user-username::before{content:attr(data-name);visibility:hidden;white-space:nowrap;margin-right:.3rem}.intro .user-name{color:#d1ebd4;transform:translateX(.3rem) translateY(.35rem);vertical-align:baseline}.intro .user-title{font-family:"Caesar Dressing";display:block;margin:.5rem 0 0;line-height:1.15;font-weight:400;color:#eac7ff;font-size:clamp(.1rem,.6vw + .8rem,1.5rem)}.intro .user-short-description,.user-description{font-family:"Barriecito";display:block;margin:1.9rem 0 0;line-height:1.15;font-weight:400;color:#6ad4a8;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:#e3a36f}.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:.5rem;margin:.25rem;border-radius:50%;transition:color 180ms ease,background-color 180ms ease,transform 120ms ease}.social-links .icon:focus,.social-links .icon:hover{color:#161d17;background:#fff;transform:translateY(-3px)}.social-links .icon:active{transform:translateY(-1px) scale(.99)}@media (min-width:768px){.social-links .icon{width:1.875rem;height:1.875rem;font-size:1.875rem}}#particles-js,#solid-bg{position:fixed;width:100%;height:100%;background:#161d17;background-repeat:no-repeat;background-size:cover}#particles-js{inset:0;z-index:0;pointer-events:none;contain:paint;-webkit-transform:translateZ(0)}#solid-bg{top:0;left:0;z-index:-1;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)}
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
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)}!function(){const e=Math.max(1,Math.min(2,window.devicePixelRatio||1)),n=window.innerWidth*window.innerHeight;let o=Math.round(Math.max(12,Math.min(160,n/15e3)));e>1.5&&(o=Math.round(o/e)),navigator.hardwareConcurrency&&navigator.hardwareConcurrency<=2&&(o=Math.round(.6*o)),o=Math.max(10,Math.min(160,o)),o=Math.floor(1.5*o);const t={particles:{number:{value:o,density:{enable:!1}},color:{value:"#ffffff"},shape:{type:"circle"},opacity:{value:.45,random:!1},size:{value:1.4,random:!0},line_linked:{enable:!1},move:{enable:!1,speed:.6,direction:"none",random:!0,straight:!1,out_mode:"out"}},interactivity:{detect_on:"canvas",events:{onhover:{enable:!1},onclick:{enable:!1},resize:!1},modes:{}},retina_detect:!1};try{window.pJSDom&&window.pJSDom.length&&(window.pJSDom.forEach(e=>e&&e.pJS&&e.pJS.fn&&e.pJS.fn.vendors&&e.pJS.fn.vendors.destroypJS&&e.pJS.fn.vendors.destroypJS()),window.pJSDom=[])}catch(e){}particlesJS("particles-js",t)}()},!1);
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.6
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: 1980-01-02 00:00:00.000000000 Z
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.6.7
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
@@ -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
- }