galaxytheme 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/README.md +10 -0
 - data/_config.yml +5 -0
 - data/_includes/head.html +8 -0
 - data/_layouts/default.html +6 -0
 - data/_sass/base.scss +105 -0
 - data/assets/space-theme.scss +4 -0
 - metadata +72 -0
 
    
        checksums.yaml
    ADDED
    
    | 
         @@ -0,0 +1,7 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            ---
         
     | 
| 
      
 2 
     | 
    
         
            +
            SHA256:
         
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 54faa4abf836d5e175105a9a8c706ff5a20953a476a248b36f4632457323be02
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 906d711c6bdff65f35ebb05024a8356f35b25e1c1ce0ae8357b0081b19287137
         
     | 
| 
      
 5 
     | 
    
         
            +
            SHA512:
         
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 5e50a7ce968323da393c3ffbea21fbcb8a782065890c61b66bffe3d5c3051a61beb8e4892ce22ada0055a4d9a7d35b4ac30b7106c21ea597a56aa0bcb210a00b
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 2a2737a3bdf55d3a0030ef68c90183ec2aae05b849120af2445484d91570d21b41d5a6f58e1191bf5a13504726d3d154717c57130d8ec86e04355821d1219583
         
     | 
    
        data/README.md
    ADDED
    
    | 
         @@ -0,0 +1,10 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # SPACE THEME!!!
         
     | 
| 
      
 2 
     | 
    
         
            +
             
     | 
| 
      
 3 
     | 
    
         
            +
            A [jekyll](https://jekyllrb.com) theme designed as a submission for [hackclub](https://hackclub.com)'s [tonic](https://tonic.hackclub.com) event!
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            i created this theme as a way to open up more doors in the programming world for myself, and with [moonshot](https://moonshot.hackclub.com/?t=webt) coming up, a space theme sounded really cool
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            # how to use
         
     | 
| 
      
 8 
     | 
    
         
            +
            1. at the top of this page, select **Use this template** > **Create a new repository** to clone the template to your account
         
     | 
| 
      
 9 
     | 
    
         
            +
            2. create a codespace from the created repository (for beginners) or use `git clone` (for advanced users) to start pushing commits
         
     | 
| 
      
 10 
     | 
    
         
            +
            3. run `gem install jekyll`, then `jekyll serve` to see the template in action
         
     | 
    
        data/_config.yml
    ADDED
    
    
    
        data/_includes/head.html
    ADDED
    
    | 
         @@ -0,0 +1,8 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            <head>
         
     | 
| 
      
 2 
     | 
    
         
            +
              <title>{{ page.title }} | {{ site.title }}</title>
         
     | 
| 
      
 3 
     | 
    
         
            +
              <link href="https://em-content.zobj.net/source/animated-noto-color-emoji/427/rocket_1f680.gif" rel="icon" type="image/x-icon">
         
     | 
| 
      
 4 
     | 
    
         
            +
              <link href="https://fonts.googleapis.com/css2?family=Space+Mono" rel="stylesheet">
         
     | 
| 
      
 5 
     | 
    
         
            +
              <link rel="stylesheet" href="{{ '/assets/space-theme.css' | relative_url }}">
         
     | 
| 
      
 6 
     | 
    
         
            +
              <meta charset="utf-8">
         
     | 
| 
      
 7 
     | 
    
         
            +
              <meta name="viewport" content="width=device-width, initial-scale=1">
         
     | 
| 
      
 8 
     | 
    
         
            +
            </head>
         
     | 
    
        data/_sass/base.scss
    ADDED
    
    | 
         @@ -0,0 +1,105 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            body {
         
     | 
| 
      
 2 
     | 
    
         
            +
                background-repeat: no-repeat;
         
     | 
| 
      
 3 
     | 
    
         
            +
                background-size: cover;
         
     | 
| 
      
 4 
     | 
    
         
            +
                background-image: url("https://wallpapercave.com/wp/wp15240950.webp");
         
     | 
| 
      
 5 
     | 
    
         
            +
                font-family: 'Space Mono';
         
     | 
| 
      
 6 
     | 
    
         
            +
                color: rgb(218, 239, 255);
         
     | 
| 
      
 7 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 8 
     | 
    
         
            +
                background-position: center;
         
     | 
| 
      
 9 
     | 
    
         
            +
            }
         
     | 
| 
      
 10 
     | 
    
         
            +
            a {
         
     | 
| 
      
 11 
     | 
    
         
            +
                color:rgb(218, 239, 255);
         
     | 
| 
      
 12 
     | 
    
         
            +
            }
         
     | 
| 
      
 13 
     | 
    
         
            +
            a:hover {
         
     | 
| 
      
 14 
     | 
    
         
            +
                color: rgb(96, 207, 255);
         
     | 
| 
      
 15 
     | 
    
         
            +
            }
         
     | 
| 
      
 16 
     | 
    
         
            +
            hr {
         
     | 
| 
      
 17 
     | 
    
         
            +
                border: 1px solid rgb(218, 239, 255);
         
     | 
| 
      
 18 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 19 
     | 
    
         
            +
            }
         
     | 
| 
      
 20 
     | 
    
         
            +
            blockquote {
         
     | 
| 
      
 21 
     | 
    
         
            +
                padding: 0.1em 2em 0.1em 3em;
         
     | 
| 
      
 22 
     | 
    
         
            +
                position: relative;
         
     | 
| 
      
 23 
     | 
    
         
            +
                border-left: 2rem solid rgb(96, 207, 255);
         
     | 
| 
      
 24 
     | 
    
         
            +
                font-size: 1.5rem;
         
     | 
| 
      
 25 
     | 
    
         
            +
                font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
         
     | 
| 
      
 26 
     | 
    
         
            +
                font-style: italic;
         
     | 
| 
      
 27 
     | 
    
         
            +
                border-radius: 15px;
         
     | 
| 
      
 28 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 29 
     | 
    
         
            +
                background-color: rgb(218, 239, 255);
         
     | 
| 
      
 30 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 31 
     | 
    
         
            +
            }
         
     | 
| 
      
 32 
     | 
    
         
            +
            blockquote:before {
         
     | 
| 
      
 33 
     | 
    
         
            +
                content: "\201C";
         
     | 
| 
      
 34 
     | 
    
         
            +
                color: rgba(124, 124, 124, 0.5);
         
     | 
| 
      
 35 
     | 
    
         
            +
                font-size: 5em;
         
     | 
| 
      
 36 
     | 
    
         
            +
                position: absolute;
         
     | 
| 
      
 37 
     | 
    
         
            +
                left: 1rem;
         
     | 
| 
      
 38 
     | 
    
         
            +
                top: 0.4em;
         
     | 
| 
      
 39 
     | 
    
         
            +
                line-height: 0.1em;
         
     | 
| 
      
 40 
     | 
    
         
            +
            }
         
     | 
| 
      
 41 
     | 
    
         
            +
            blockquote:after {
         
     | 
| 
      
 42 
     | 
    
         
            +
                content: "\201D";
         
     | 
| 
      
 43 
     | 
    
         
            +
                color: rgba(124, 124, 124, 0.5);
         
     | 
| 
      
 44 
     | 
    
         
            +
                font-size: 5em;
         
     | 
| 
      
 45 
     | 
    
         
            +
                position: absolute;
         
     | 
| 
      
 46 
     | 
    
         
            +
                right: 2rem;
         
     | 
| 
      
 47 
     | 
    
         
            +
                top: 0.85em;
         
     | 
| 
      
 48 
     | 
    
         
            +
                line-height: 0.1em;
         
     | 
| 
      
 49 
     | 
    
         
            +
            }
         
     | 
| 
      
 50 
     | 
    
         
            +
            button {
         
     | 
| 
      
 51 
     | 
    
         
            +
                background-color: rgb(218, 239, 255);
         
     | 
| 
      
 52 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 53 
     | 
    
         
            +
                border-radius: 15px;
         
     | 
| 
      
 54 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 55 
     | 
    
         
            +
                border: white;
         
     | 
| 
      
 56 
     | 
    
         
            +
            }
         
     | 
| 
      
 57 
     | 
    
         
            +
            table {
         
     | 
| 
      
 58 
     | 
    
         
            +
                margin-left: auto;
         
     | 
| 
      
 59 
     | 
    
         
            +
                margin-right: auto;
         
     | 
| 
      
 60 
     | 
    
         
            +
                border-collapse: collapse;
         
     | 
| 
      
 61 
     | 
    
         
            +
                padding: 10px;
         
     | 
| 
      
 62 
     | 
    
         
            +
                text-align: center;
         
     | 
| 
      
 63 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 64 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 65 
     | 
    
         
            +
            }
         
     | 
| 
      
 66 
     | 
    
         
            +
            table, th, td {
         
     | 
| 
      
 67 
     | 
    
         
            +
                border: 1px solid;
         
     | 
| 
      
 68 
     | 
    
         
            +
            }
         
     | 
| 
      
 69 
     | 
    
         
            +
            tbody tr:nth-child(odd) {
         
     | 
| 
      
 70 
     | 
    
         
            +
                background-color: rgb(218, 239, 255); 
         
     | 
| 
      
 71 
     | 
    
         
            +
            }
         
     | 
| 
      
 72 
     | 
    
         
            +
            tbody tr:nth-child(even) {
         
     | 
| 
      
 73 
     | 
    
         
            +
                background-color: rgb(96, 207, 255);
         
     | 
| 
      
 74 
     | 
    
         
            +
            }
         
     | 
| 
      
 75 
     | 
    
         
            +
            th {
         
     | 
| 
      
 76 
     | 
    
         
            +
                background-color: rgb(96, 207, 255);
         
     | 
| 
      
 77 
     | 
    
         
            +
            }
         
     | 
| 
      
 78 
     | 
    
         
            +
            img {
         
     | 
| 
      
 79 
     | 
    
         
            +
                border-radius: 15px;
         
     | 
| 
      
 80 
     | 
    
         
            +
            }
         
     | 
| 
      
 81 
     | 
    
         
            +
            .proxima {
         
     | 
| 
      
 82 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 83 
     | 
    
         
            +
            }
         
     | 
| 
      
 84 
     | 
    
         
            +
            div {
         
     | 
| 
      
 85 
     | 
    
         
            +
                border: none;
         
     | 
| 
      
 86 
     | 
    
         
            +
            }
         
     | 
| 
      
 87 
     | 
    
         
            +
            .star {
         
     | 
| 
      
 88 
     | 
    
         
            +
                width: 100px;
         
     | 
| 
      
 89 
     | 
    
         
            +
                height: 100px;
         
     | 
| 
      
 90 
     | 
    
         
            +
                animation: spin 10s linear infinite;
         
     | 
| 
      
 91 
     | 
    
         
            +
                position: absolute;
         
     | 
| 
      
 92 
     | 
    
         
            +
            }
         
     | 
| 
      
 93 
     | 
    
         
            +
            audio {
         
     | 
| 
      
 94 
     | 
    
         
            +
                border-radius: 30px;
         
     | 
| 
      
 95 
     | 
    
         
            +
                color: rgb(96, 207, 255);
         
     | 
| 
      
 96 
     | 
    
         
            +
                box-shadow: rgba(96, 207, 255, 0.5) 0px 0px 10px 10px;
         
     | 
| 
      
 97 
     | 
    
         
            +
            }
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            @keyframes spin {
         
     | 
| 
      
 100 
     | 
    
         
            +
                0% { top: 0%; left: 0%; transform: rotate(0deg); }
         
     | 
| 
      
 101 
     | 
    
         
            +
                25% { top: 10%; left: 90%; }
         
     | 
| 
      
 102 
     | 
    
         
            +
                50% { top: 90%; left: 0%; transform: rotate(360deg); }
         
     | 
| 
      
 103 
     | 
    
         
            +
                75% { top: 100%; left: 90%; }
         
     | 
| 
      
 104 
     | 
    
         
            +
                100% { top: 0%; left: 0%; transform: rotate(0deg); }
         
     | 
| 
      
 105 
     | 
    
         
            +
            }
         
     | 
    
        metadata
    ADDED
    
    | 
         @@ -0,0 +1,72 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
      
 2 
     | 
    
         
            +
            name: galaxytheme
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
      
 5 
     | 
    
         
            +
            platform: ruby
         
     | 
| 
      
 6 
     | 
    
         
            +
            authors:
         
     | 
| 
      
 7 
     | 
    
         
            +
            - Art3mis
         
     | 
| 
      
 8 
     | 
    
         
            +
            bindir: bin
         
     | 
| 
      
 9 
     | 
    
         
            +
            cert_chain: []
         
     | 
| 
      
 10 
     | 
    
         
            +
            date: 1980-01-02 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: 3.9.0
         
     | 
| 
      
 19 
     | 
    
         
            +
              type: :runtime
         
     | 
| 
      
 20 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 21 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 22 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 23 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 24 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 25 
     | 
    
         
            +
                    version: 3.9.0
         
     | 
| 
      
 26 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 27 
     | 
    
         
            +
              name: bundler
         
     | 
| 
      
 28 
     | 
    
         
            +
              requirement: !ruby/object:Gem::Requirement
         
     | 
| 
      
 29 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 30 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 31 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 32 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 33 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 34 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 35 
     | 
    
         
            +
              version_requirements: !ruby/object:Gem::Requirement
         
     | 
| 
      
 36 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 37 
     | 
    
         
            +
                - - ">="
         
     | 
| 
      
 38 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 39 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
      
 40 
     | 
    
         
            +
            email:
         
     | 
| 
      
 41 
     | 
    
         
            +
            - pyatt.eve@gmail.com
         
     | 
| 
      
 42 
     | 
    
         
            +
            executables: []
         
     | 
| 
      
 43 
     | 
    
         
            +
            extensions: []
         
     | 
| 
      
 44 
     | 
    
         
            +
            extra_rdoc_files: []
         
     | 
| 
      
 45 
     | 
    
         
            +
            files:
         
     | 
| 
      
 46 
     | 
    
         
            +
            - README.md
         
     | 
| 
      
 47 
     | 
    
         
            +
            - _config.yml
         
     | 
| 
      
 48 
     | 
    
         
            +
            - _includes/head.html
         
     | 
| 
      
 49 
     | 
    
         
            +
            - _layouts/default.html
         
     | 
| 
      
 50 
     | 
    
         
            +
            - _sass/base.scss
         
     | 
| 
      
 51 
     | 
    
         
            +
            - assets/space-theme.scss
         
     | 
| 
      
 52 
     | 
    
         
            +
            homepage: https://github.com/artemis9703/space-theme
         
     | 
| 
      
 53 
     | 
    
         
            +
            licenses: []
         
     | 
| 
      
 54 
     | 
    
         
            +
            metadata: {}
         
     | 
| 
      
 55 
     | 
    
         
            +
            rdoc_options: []
         
     | 
| 
      
 56 
     | 
    
         
            +
            require_paths:
         
     | 
| 
      
 57 
     | 
    
         
            +
            - lib
         
     | 
| 
      
 58 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 59 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 60 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 61 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 62 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 63 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
      
 64 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 65 
     | 
    
         
            +
              - - ">="
         
     | 
| 
      
 66 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 67 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 68 
     | 
    
         
            +
            requirements: []
         
     | 
| 
      
 69 
     | 
    
         
            +
            rubygems_version: 3.7.2
         
     | 
| 
      
 70 
     | 
    
         
            +
            specification_version: 4
         
     | 
| 
      
 71 
     | 
    
         
            +
            summary: a really cool theme about space
         
     | 
| 
      
 72 
     | 
    
         
            +
            test_files: []
         
     |