catgirl 0.1.1 → 0.1.3

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: 3ee5b681b157ff4209e5e7f4d619a530f22d8a2028e5730da5835df955448edc
4
- data.tar.gz: 5a78a67b9bcbdb6673f356d19b01f931a8a59880a3b4693b53299a6478768725
3
+ metadata.gz: 5d0200fa2b06ac4de706fb081ddd6621607b0884d93afe3bcd14a8b44fbf93ec
4
+ data.tar.gz: 25550b069b1872027c4de56668768f3eb536de2e8c6f3b6a4b2c62ab1b2f80c6
5
5
  SHA512:
6
- metadata.gz: 625d5962a7b1e3ade3d121da80adb2fb295b031858a2ae47302b111786e76d9d35c36e608cf711945cd5346778ce5295b244458b5f8d74b1c24e1ada7c6f7979
7
- data.tar.gz: 671003f93023916851ca89bca8787fe66b5834fba47b9089d4e2180fdba380c5f9a5f494cb585a0d73ac9bbbee2f9f1f082ec5f7127df6ad9c1d908ce2dee77b
6
+ metadata.gz: f4989d3d0924113ca3a6dfc69ae559b2a67257b4514633b067fccbba164fd46892dc47a3c58e948f4de5649f376c3f62f494719f3fd5aca4bbe7ee78fbaa9718
7
+ data.tar.gz: 46668254f4a37d16061b655595d23c374e18b9d4b74eca274be90c4ce1359a83831759aabd2d936bdbe4179920a7a38a81b4207a8495b5960ec5e65aabdf6373
data/_includes/head.html CHANGED
@@ -1,13 +1,18 @@
1
- <head>
2
- <meta charset="UTF-8">
3
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
- <meta name="viewport" content="width=device-width, initial-scale=1">
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+ {%- if page.layout == "home" -%}
6
+ <link rel="stylesheet" href="/assets/css/home.css">
7
+ <script src="https://unpkg.com/twemoji@latest/dist/twemoji.min.js" crossorigin="anonymous"></script>
8
+ {%- else -%}
5
9
  <link rel="stylesheet" href="/assets/css/styles.css">
6
- <title>
7
- {%- unless page.layout == "home" -%}
8
- {{ page.title | append: " | " }}
9
- {%- endunless -%}
10
- {{ site.title }}
11
- </title>
12
- {% include favicons.html %}
13
- </head>
10
+ {%- endif -%}
11
+ <title>
12
+ {%- unless page.layout == "home" -%}
13
+ {{ page.title | append: " | " }}
14
+ {%- endunless -%}
15
+ {{ site.title }}
16
+ </title>
17
+ {% include favicons.html %}
18
+ </head>
data/_layouts/home.html CHANGED
@@ -1,19 +1,34 @@
1
- ---
2
- layout: default
3
- # home page layout
4
- ---
1
+ {% include head.html %}
5
2
 
6
- <div id="home-wrapper">
7
- <h1 class="home-text">j1nxie | Rylie | Lumine</h1>
8
- <hr style="width: 80%">
9
- <p class="home-text">
10
- random developer on the internet | hoshiyomi | i like anime girls
11
- </p>
12
- <p class="home-text">
13
- check out my projects <a href="/projects">here</a>!
3
+ <body>
4
+ <main>
5
+ <h1>j1nxie | Rylie | Lumine</h1>
6
+ <p id="bio">
7
+ catgirl developer on the Internet hoshiyomi i like anime,
8
+ programming and video games
14
9
  </p>
10
+ <ul>
11
+ <li><a href="/socials">socials</a></li>
12
+ <li><a href="/archives">blog</a></li>
13
+ <li><a href="/projects">projects</a></li>
14
+ </ul>
15
+ <img src="/assets/img/suiseistupid.png">
16
+ </main>
17
+ <div id="space"></div>
15
18
  <p id="quote-text">
16
19
  "I want to do what I can for the people who need me. That way, I might
17
20
  remain in the memories of that person, right?"
18
21
  </p>
19
- </div>
22
+ <p id="quote-name">
23
+ - Chisato Nishikigi
24
+ </p>
25
+ <footer>
26
+ © 2022-2023 j1nxie
27
+ </footer>
28
+
29
+ <script>
30
+ twemoji.parse(
31
+ document.body,
32
+ { base: "https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/" });
33
+ </script>
34
+ </body>
data/_sass/catgirl.scss CHANGED
@@ -1,6 +1,5 @@
1
1
  @import "fonts";
2
2
  @import "colors";
3
- @import "home";
4
3
 
5
4
  $sidebar-size: 280px;
6
5
 
@@ -0,0 +1,67 @@
1
+ @import "colors";
2
+ @import "fonts";
3
+
4
+ #bio,
5
+ #quote-text {
6
+ margin: 0 auto;
7
+ max-width: 300pt;
8
+ }
9
+
10
+ #quote-name {
11
+ margin: 1em auto;
12
+ max-width: 300pt;
13
+ text-align: right;
14
+ }
15
+
16
+ #space {
17
+ height: 120px;
18
+ }
19
+
20
+ * {
21
+ box-sizing: border-box;
22
+ }
23
+
24
+ body {
25
+ background: $dark-bg;
26
+ color: $dark-text;
27
+ margin: 0;
28
+ padding: 0;
29
+ text-align: center;
30
+ }
31
+
32
+ h1 {
33
+ margin-top: 100px;
34
+ }
35
+
36
+ hr {
37
+ max-width: 300pt;
38
+ }
39
+
40
+ p {
41
+ img {
42
+ display: inline-block;
43
+ height: 1em;
44
+ transform: translate(0, 0.1em);
45
+ }
46
+ }
47
+
48
+ a {
49
+ color: $dark-text;
50
+ }
51
+
52
+ a:visited {
53
+ color: silver;
54
+ }
55
+
56
+ ul {
57
+ padding: 0;
58
+ }
59
+
60
+ li {
61
+ display: inline;
62
+ list-style-type: none;
63
+ }
64
+
65
+ li:not(:last-child)::after {
66
+ content: " • ";
67
+ }
@@ -0,0 +1,4 @@
1
+ ---
2
+ ---
3
+
4
+ @import "homepage";
@@ -1,3 +1,4 @@
1
1
  ---
2
2
  ---
3
+
3
4
  @import "catgirl";
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: catgirl
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - j1nxie
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-16 00:00:00.000000000 Z
11
+ date: 2023-01-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -61,7 +61,8 @@ files:
61
61
  - _sass/catgirl.scss
62
62
  - _sass/colors.scss
63
63
  - _sass/fonts.scss
64
- - _sass/home.scss
64
+ - _sass/homepage.scss
65
+ - assets/css/home.scss
65
66
  - assets/css/styles.scss
66
67
  - assets/img/favicons/android-chrome-192x192.png
67
68
  - assets/img/favicons/apple-touch-icon.png
@@ -71,6 +72,7 @@ files:
71
72
  - assets/img/favicons/mstile-150x150.png
72
73
  - assets/img/favicons/safari-pinned-tab.svg
73
74
  - assets/img/suisei.png
75
+ - assets/img/suiseistupid.png
74
76
  homepage: https://github.com/j1nxie/catgirl
75
77
  licenses:
76
78
  - MIT
data/_sass/home.scss DELETED
@@ -1,19 +0,0 @@
1
- #home-wrapper {
2
- display: flex;
3
- flex-direction: column;
4
- font-size: 20px;
5
- height: 100%;
6
- justify-content: center;
7
- line-height: 1.25em;
8
- width: 800px;
9
- }
10
-
11
- .home-text {
12
- text-align: center;
13
- }
14
-
15
- #quote-text {
16
- align-self: center;
17
- margin-top: auto;
18
- text-align: center;
19
- }