memerator-jekyll-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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: a29b0087cde7cebd706c6ffeaeb6363a451f2e3263d12173614629d90bf20f6f
4
+ data.tar.gz: ae707638c1f61405c341b4f41e8dcead3c246a9b3cf8efd11afa1b7a403b88ed
5
+ SHA512:
6
+ metadata.gz: 913e6c2ad7380a97249afc94c0adff08dd199c0bbb262d246a5e615e927dd1b38165f21d32a4ece26315d595361f6d2529eb8f1bfab97d3f75c76bca8bed766a
7
+ data.tar.gz: d1655945059ca3ed26264a2d93dd830935bf62b98e598b32857fadc1bf80f6be778cc45633fe48f64668dbfa538e92792d71d6ee8f9dfb0cd5532fc646ffa643
@@ -0,0 +1,19 @@
1
+ <link rel="apple-touch-icon" sizes="57x57" href="https://memerator.me/apple-icon-57x57.png">
2
+ <link rel="apple-touch-icon" sizes="60x60" href="https://memerator.me/apple-icon-60x60.png">
3
+ <link rel="apple-touch-icon" sizes="72x72" href="https://memerator.me/apple-icon-72x72.png">
4
+ <link rel="apple-touch-icon" sizes="76x76" href="https://memerator.me/apple-icon-76x76.png">
5
+ <link rel="apple-touch-icon" sizes="114x114" href="https://memerator.me/apple-icon-114x114.png">
6
+ <link rel="apple-touch-icon" sizes="120x120" href="https://memerator.me/apple-icon-120x120.png">
7
+ <link rel="apple-touch-icon" sizes="144x144" href="https://memerator.me/apple-icon-144x144.png">
8
+ <link rel="apple-touch-icon" sizes="152x152" href="https://memerator.me/apple-icon-152x152.png">
9
+ <link rel="apple-touch-icon" sizes="180x180" href="https://memerator.me/apple-icon-180x180.png">
10
+ <link rel="icon" type="image/png" sizes="192x192" href="https://memerator.me/android-icon-192x192.png">
11
+ <link rel="icon" type="image/png" sizes="32x32" href="https://memerator.me/favicon-32x32.png">
12
+ <link rel="icon" type="image/png" sizes="96x96" href="https://memerator.me/favicon-96x96.png">
13
+ <link rel="icon" type="image/png" sizes="16x16" href="https://memerator.me/favicon-16x16.png">
14
+ <link rel="apple-touch-startup-image" href="https://memerator.me/launch.png">
15
+ <meta name="apple-mobile-web-app-title" content="Memerator">
16
+ <meta name="apple-mobile-web-app-capable" content="yes">
17
+ <meta name="msapplication-TileColor" content="#ffffff">
18
+ <meta name="msapplication-TileImage" content="https://memerator.me/ms-icon-144x144.png">
19
+ <meta name="theme-color" content="#ffffff">
@@ -0,0 +1,36 @@
1
+ <style>
2
+ #noti_bubble {
3
+ border: 2px solid #dc3545;
4
+ border-radius: 50%;
5
+ fill: #dc3545;
6
+ background-color: #dc3545;
7
+ padding-left: 5px;
8
+ padding-right: 5px;
9
+ color: white;
10
+ }
11
+ @media (max-width: 576px) {
12
+ .scrollable-menu {
13
+ height: auto;
14
+ max-height: 150px;
15
+ overflow-x: hidden;
16
+ }
17
+ }
18
+ </style>
19
+
20
+ <nav class="navbar navbar-expand-md navbar-dark fixed-top" style="background-color: #343a40ee;">
21
+ <div class="container">
22
+ <a class="navbar-brand" href="#">{{ site.title }}</a>
23
+ <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
24
+ <span class="navbar-toggler-icon"></span>
25
+ </button>
26
+ <div class="collapse navbar-collapse" id="navbarSupportedContent">
27
+ <ul class="navbar-nav mr-auto">
28
+ {% for item in site.nav %}
29
+ <li class="nav-item">
30
+ <a class="nav-link" href="{{ item.url }}" {% if item.url==page.url %} class="active" {% endif %}>{{ item.title }}</a>
31
+ </li>
32
+ {% endfor %}
33
+ </ul>
34
+ </div>
35
+ </div>
36
+ </nav>
@@ -0,0 +1,22 @@
1
+ <!-- Bootstrap (4.4.1) -->
2
+ <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
3
+
4
+ <!-- jQuery (3.4.1) -->
5
+ <script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
6
+
7
+ <!-- Bootstrap JS, Popper.js -->
8
+ <script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
9
+ <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
10
+
11
+ <!-- Highlight.js (9.15.8) -->
12
+ <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/styles/default.min.css">
13
+ <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.15.8/highlight.min.js"></script>
14
+
15
+ <!-- Font Awesome (Latest) -->
16
+ <script src="https://kit.fontawesome.com/4ae5eef027.js"></script>
17
+
18
+ <!-- bootstrap-table (1.15.5) -->
19
+ <link rel="stylesheet" href="https://unpkg.com/bootstrap-table@1.15.5/dist/bootstrap-table.min.css">
20
+
21
+ <!-- Twemoji -->
22
+ <script src="https://twemoji.maxcdn.com/v/latest/twemoji.min.js" crossorigin="anonymous"></script>
@@ -0,0 +1,54 @@
1
+ <!DOCTYPE html>
2
+ <html prefix="og: http://ogp.me/ns# article: http://ogp.me/ns/article#">
3
+ <head>
4
+ {% include icons.html %}
5
+ {% include scripts.html %}
6
+ <meta charset="utf-8">
7
+ <meta name="viewport" content="width=device-width, initial-scale=1, minimal-ui">
8
+ <meta property="og:site_name" content="Memerator" />
9
+ <meta property="twitter:site" content="Memerator">
10
+ <style>
11
+ @media (min-width: 576px) {
12
+ #fix {
13
+ margin-top: -50px;
14
+ }
15
+ }
16
+ @media (max-width: 576px) {
17
+ #fix {
18
+ margin-top: -20px;
19
+ }
20
+ }
21
+ </style>
22
+ <link rel="stylesheet" href="/assets/stylesheets/main.css">
23
+ <title>{{ page.title }} - {{ site.title }}</title>
24
+ <meta property="og:title" content="{{ page.title }} - {{ site.title }}" />
25
+ <meta property="og:description" content="{{ page.description }}" />
26
+ <meta name="description" content="{{ page.description }}" itemprop="description">
27
+ <meta property="twitter:site" content="{{ site.title }}">
28
+ <meta property="twitter:title" content="{{ page.title }} - {{ site.title }}">
29
+ </head>
30
+
31
+ <body>
32
+ <script src="https://cdnjs.cloudflare.com/ajax/libs/clipboard.js/2.0.0/clipboard.min.js"></script>
33
+
34
+ {% include nav.html %}
35
+
36
+ <div class="container" style="margin-top: 70px;">
37
+ <div class="jumbotron">
38
+ <h1 id="fix">{{ page.title }}</h1>
39
+
40
+ {{ content }}
41
+ </div>
42
+ </div>
43
+ <script>
44
+ $("img").lazyload();
45
+ twemoji.parse(document.body);
46
+ </script>
47
+ <style>
48
+ img.emoji {
49
+ width: 25px;
50
+ }
51
+ </style>
52
+ <script src="https://unpkg.com/bootstrap-table@1.15.5/dist/bootstrap-table.min.js"></script>
53
+ </body>
54
+ </html>
@@ -0,0 +1,133 @@
1
+ body {
2
+ background-color: #fabc4d;
3
+ }
4
+
5
+ #macaroni {
6
+ position: absolute;
7
+ top: 50px;
8
+ z-index: -1;
9
+ height: 100%;
10
+ width: 100%;
11
+ }
12
+
13
+ * {
14
+ box-sizing: border-box;
15
+ }
16
+
17
+ .heading {
18
+ font-size: 25px;
19
+ }
20
+
21
+ .fa {
22
+ font-size: 25px;
23
+ }
24
+
25
+ .checked {
26
+ color: orange;
27
+ }
28
+
29
+ /* Three column layout */
30
+ .side {
31
+ float: left;
32
+ width: 15%;
33
+ margin-top: 10px;
34
+ }
35
+
36
+ .middle {
37
+ float: left;
38
+ width: 70%;
39
+ margin-top: 10px;
40
+ }
41
+
42
+ /* Place text to the right */
43
+ .right {
44
+ text-align: right;
45
+ }
46
+
47
+ /* Clear floats after the columns */
48
+ .row:after {
49
+ content: "";
50
+ display: table;
51
+ clear: both;
52
+ }
53
+
54
+ /* The bar container */
55
+ .bar-container {
56
+ width: 100%;
57
+ background-color: #f1f1f1;
58
+ text-align: center;
59
+ color: white;
60
+ padding-top: 3px;
61
+ }
62
+
63
+ /* Individual bars */
64
+ .bar-5 {
65
+ height: 18px;
66
+ background-color: #4CAF50;
67
+ }
68
+
69
+ .bar-4 {
70
+ height: 18px;
71
+ background-color: #2196F3;
72
+ }
73
+
74
+ .bar-3 {
75
+ height: 18px;
76
+ background-color: #00bcd4;
77
+ }
78
+
79
+ .bar-2 {
80
+ height: 18px;
81
+ background-color: #ff9800;
82
+ }
83
+
84
+ .bar-1 {
85
+ height: 18px;
86
+ background-color: #f44336;
87
+ }
88
+
89
+ /* Responsive layout - make the columns stack on top of each other instead of next to each other */
90
+ @media (max-width: 400px) {
91
+ .side, .middle {
92
+ width: 100%;
93
+ }
94
+
95
+ /* Hide the right column on small screens */
96
+ .right {
97
+ display: none;
98
+ }
99
+ }
100
+
101
+ .ratings {
102
+ position: relative;
103
+ vertical-align: middle;
104
+ display: inline-block;
105
+ color: #b1b1b1;
106
+ overflow: hidden;
107
+ }
108
+ .full-stars {
109
+ position: absolute;
110
+ left: 0;
111
+ top: 0;
112
+ white-space: nowrap;
113
+ overflow: hidden;
114
+ color: #fde16d;
115
+ }
116
+ .empty-stars:before, .full-stars:before {
117
+ content:"\2605\2605\2605\2605\2605";
118
+ font-size: 14pt;
119
+ }
120
+ .empty-stars:before {
121
+ -webkit-text-stroke: 1px #848484;
122
+ }
123
+ .full-stars:before {
124
+ -webkit-text-stroke: 1px orange;
125
+ }
126
+ /* Webkit-text-stroke is not supported on firefox or IE */
127
+
128
+ /* Firefox */
129
+ @-moz-document url-prefix() {
130
+ .full-stars {
131
+ color: #ECBE24;
132
+ }
133
+ }
metadata ADDED
@@ -0,0 +1,90 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: memerator-jekyll-theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Memerator
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-04-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: jekyll
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '3.8'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.8'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.16'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.16'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '12.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '12.0'
55
+ description:
56
+ email:
57
+ - help@memerator.me
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - _includes/icons.html
63
+ - _includes/nav.html
64
+ - _includes/scripts.html
65
+ - _layouts/default.html
66
+ - assets/stylesheets/main.css
67
+ homepage: https://github.com/Memerator/Jekyll-Theme
68
+ licenses:
69
+ - MIT
70
+ metadata: {}
71
+ post_install_message:
72
+ rdoc_options: []
73
+ require_paths:
74
+ - lib
75
+ required_ruby_version: !ruby/object:Gem::Requirement
76
+ requirements:
77
+ - - ">="
78
+ - !ruby/object:Gem::Version
79
+ version: '0'
80
+ required_rubygems_version: !ruby/object:Gem::Requirement
81
+ requirements:
82
+ - - ">="
83
+ - !ruby/object:Gem::Version
84
+ version: '0'
85
+ requirements: []
86
+ rubygems_version: 3.0.6
87
+ signing_key:
88
+ specification_version: 4
89
+ summary: The Jekyll Pages Theme for Memerator.
90
+ test_files: []