space-theme 0.1.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.
- checksums.yaml +7 -0
- data/Gemfile +4 -0
- data/LICENSE +23 -0
- data/README.md +22 -0
- data/_config.yml +5 -0
- data/_includes/head.html +6 -0
- data/_layouts/default.html +6 -0
- data/_sass/base.scss +39 -0
- data/assets/my-theme.scss +4 -0
- data/index.md +8 -0
- metadata +81 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 1fac6110747e9d9d3872db702306ac4af14dbf0cae002d497293c0150b6abea0
|
|
4
|
+
data.tar.gz: 50ef6324ac7ab2a893016dc032b175286ddcf1910f377116e76e91b2862f0916
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: acaabe706dba1e1093747eef3f5b4c3b814eccf090057c51ae47bf7e002a03266c7dca4dfc66392b84f111d3851754a1668a483167ba4adb1cde40c954d1e72d
|
|
7
|
+
data.tar.gz: 2400c141bcb9e24f7d5567ea514757c6731e82cfde4cbc982baffa43899d128b3cd1da560b43ada36c889dbc6dfaffddf288f353b53efdd3794088b089ad4dec
|
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
22
|
+
|
|
23
|
+
|
data/README.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Space Theme (Jekyll)
|
|
2
|
+
|
|
3
|
+
## What this is 🙏
|
|
4
|
+
- A basic "space theme" with:
|
|
5
|
+
- Layouts in `_layouts/` (see `default.html`)
|
|
6
|
+
- Includes in `_includes/`
|
|
7
|
+
- Styles in `_sass/` and `assets/`
|
|
8
|
+
- A sample homepage in `index.md`
|
|
9
|
+
|
|
10
|
+
## Prerequisites (what all you need)
|
|
11
|
+
- Ruby and Bundler
|
|
12
|
+
- Jekyll (`gem install jekyll bundler`)
|
|
13
|
+
|
|
14
|
+
## Customization (what and where to change stuff)
|
|
15
|
+
- Edit `_config.yml` for site metadata.
|
|
16
|
+
- Update `_layouts/default.html` and files in `_includes/`.
|
|
17
|
+
- Add or change styles in `_sass/` and `assets/`.
|
|
18
|
+
- Replace content in `index.md`.
|
|
19
|
+
|
|
20
|
+
## Tonic :)))
|
|
21
|
+
- Made for [Tonic submission](https://tonic.hackclub.com)
|
|
22
|
+
- Main repo: https://github.com/hackclub/tonic
|
data/_config.yml
ADDED
data/_includes/head.html
ADDED
data/_sass/base.scss
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
body {
|
|
2
|
+
background-color: #0b0c1e;
|
|
3
|
+
font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
|
|
4
|
+
margin: auto;
|
|
5
|
+
max-width: 70ch;
|
|
6
|
+
color: #e0e6f7;
|
|
7
|
+
|
|
8
|
+
background-image: radial-gradient(white 1px, transparent 0);
|
|
9
|
+
background-size: 40px 40px;
|
|
10
|
+
animation: stars 60s linear infinite;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
a {
|
|
14
|
+
color: #81a4ff;
|
|
15
|
+
text-decoration: none;
|
|
16
|
+
transition: color 0.3s ease;
|
|
17
|
+
|
|
18
|
+
&:hover {
|
|
19
|
+
color: #ffccff;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
h1, h2, h3, h4, h5, h6 {
|
|
24
|
+
color: #ffffff;
|
|
25
|
+
font-weight: 700;
|
|
26
|
+
text-shadow: 0 0 5px #3f3fff;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
code, pre {
|
|
30
|
+
background-color: #1e1f3f;
|
|
31
|
+
color: #b3d9ff;
|
|
32
|
+
padding: 0.2rem 0.4rem;
|
|
33
|
+
border-radius: 5px;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
@keyframes stars {
|
|
37
|
+
from { background-position: 0 0; }
|
|
38
|
+
to { background-position: 10000px 5000px; }
|
|
39
|
+
}
|
data/index.md
ADDED
metadata
ADDED
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: space-theme
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Dheeraj
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 2025-10-28 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: jekyll
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '4.3'
|
|
19
|
+
type: :runtime
|
|
20
|
+
prerelease: false
|
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
22
|
+
requirements:
|
|
23
|
+
- - "~>"
|
|
24
|
+
- !ruby/object:Gem::Version
|
|
25
|
+
version: '4.3'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: bundler
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - "~>"
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '2.4'
|
|
33
|
+
type: :development
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - "~>"
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '2.4'
|
|
40
|
+
description: A modern, minimal space-themed starter for building static sites with
|
|
41
|
+
Jekyll.
|
|
42
|
+
email:
|
|
43
|
+
- 17sdheeraj-git@sdheeraj.is-cool.dev
|
|
44
|
+
executables: []
|
|
45
|
+
extensions: []
|
|
46
|
+
extra_rdoc_files: []
|
|
47
|
+
files:
|
|
48
|
+
- Gemfile
|
|
49
|
+
- LICENSE
|
|
50
|
+
- README.md
|
|
51
|
+
- _config.yml
|
|
52
|
+
- _includes/head.html
|
|
53
|
+
- _layouts/default.html
|
|
54
|
+
- _sass/base.scss
|
|
55
|
+
- assets/my-theme.scss
|
|
56
|
+
- index.md
|
|
57
|
+
homepage: https://github.com/17sdheeraj/tonic
|
|
58
|
+
licenses:
|
|
59
|
+
- MIT
|
|
60
|
+
metadata:
|
|
61
|
+
homepage_uri: https://17sdheeraj.github.io/tonic
|
|
62
|
+
source_code_uri: https://github.com/17sdheeraj/tonic
|
|
63
|
+
bug_tracker_uri: https://github.com/17sdheeraj/tonic/issues
|
|
64
|
+
rdoc_options: []
|
|
65
|
+
require_paths:
|
|
66
|
+
- lib
|
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
68
|
+
requirements:
|
|
69
|
+
- - ">="
|
|
70
|
+
- !ruby/object:Gem::Version
|
|
71
|
+
version: '3.0'
|
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
|
+
requirements:
|
|
74
|
+
- - ">="
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: '0'
|
|
77
|
+
requirements: []
|
|
78
|
+
rubygems_version: 3.6.2
|
|
79
|
+
specification_version: 4
|
|
80
|
+
summary: Space Theme – a minimal Jekyll theme
|
|
81
|
+
test_files: []
|