jekyll-theme-breq 0.1.1 → 0.1.6

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.
Files changed (46) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.txt +0 -0
  3. data/README.md +0 -0
  4. data/_config.yml +0 -0
  5. data/_includes/button.html +0 -0
  6. data/_includes/footer.html +0 -0
  7. data/_includes/gallery.html +0 -0
  8. data/_includes/meta.html +6 -0
  9. data/_includes/nav.html +0 -0
  10. data/_includes/slide.html +27 -0
  11. data/_includes/youtube.html +0 -0
  12. data/_layouts/blog.html +30 -4
  13. data/_layouts/contact.html +0 -0
  14. data/_layouts/default.html +5 -5
  15. data/_layouts/error.html +12 -0
  16. data/_layouts/gallery.html +0 -0
  17. data/_layouts/page.html +0 -0
  18. data/_layouts/post.html +13 -2
  19. data/_layouts/project.html +0 -0
  20. data/_layouts/showcase.html +0 -0
  21. data/_layouts/slideshow.html +9 -0
  22. data/_sass/basics.scss +88 -0
  23. data/_sass/colors.scss +0 -0
  24. data/_sass/defaults.scss +47 -0
  25. data/_sass/error.scss +13 -0
  26. data/_sass/footer.scss +35 -0
  27. data/_sass/image.scss +50 -0
  28. data/_sass/main.scss +8 -188
  29. data/_sass/nav.scss +0 -0
  30. data/_sass/post.scss +32 -0
  31. data/_sass/slide.scss +77 -0
  32. data/_sass/syntax.scss +171 -0
  33. data/_sass/tiles.scss +0 -0
  34. data/assets/css/styles.scss +0 -0
  35. data/assets/icons/android-chrome-192x192.png +0 -0
  36. data/assets/icons/android-chrome-512x512.png +0 -0
  37. data/assets/icons/apple-touch-icon.png +0 -0
  38. data/assets/icons/browserconfig.xml +0 -0
  39. data/assets/icons/favicon-16x16.png +0 -0
  40. data/assets/icons/favicon-32x32.png +0 -0
  41. data/assets/icons/favicon.ico +0 -0
  42. data/assets/icons/mstile-150x150.png +0 -0
  43. data/assets/icons/site.webmanifest +0 -0
  44. data/assets/images/pansexual.png +0 -0
  45. data/assets/videos/344.webm +0 -0
  46. metadata +14 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a28b3f0d4f3ba7c168e8c299f2b78831d5c2a9f499a513a86653c21ba32386e4
4
- data.tar.gz: 6b44d1806a91196041e32f6d5b920af58ef1d42a8bd994a033769306c8b1573b
3
+ metadata.gz: ca39d570af41affaa119e4a5904843d08c3a10c81189bfe4b069db63b5d1fc20
4
+ data.tar.gz: 14ae5d80ff5573eed0c2eb362e8654e7d1c5b21bf98cc9aa0fa9abbfda4d400a
5
5
  SHA512:
6
- metadata.gz: 6df12320e0a5eaf52eaf1fc04d9381f98427ecd6dc821bb9ce6247465116439d2752f4fa2db310d73645b9889c4771a3ca89cbf8075d08521143b362be95bc7a
7
- data.tar.gz: e584d89894f326773d3a1496537bc53f1fd4d3862d3f1fa9c2941da334b26421ced76b550d8adcb872bb93a1ee5ef16250dccc8f6507ed637f8e52c32336820d
6
+ metadata.gz: 6d619a48c929546ff38cba2d8ef6767228735c6ba59f546bde6f74250a0c1e3b88972b49bc84b8139fc79e89b4fc1ffea41e4d5f7fd9a10f12af4e912a7a2cca
7
+ data.tar.gz: 4f5cf64d814789e538e7919fd1be604797e408bbb8f1acb347c13027e6ab9d4473c5040f351fa0ce6a71f1faebd2d4f52e599392c823f537e2512da572e48b1c
data/LICENSE.txt CHANGED
File without changes
data/README.md CHANGED
File without changes
data/_config.yml CHANGED
File without changes
File without changes
File without changes
File without changes
data/_includes/meta.html CHANGED
@@ -24,5 +24,11 @@
24
24
  <link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap" rel="stylesheet" />
25
25
  <link href="https://fonts.googleapis.com/css2?family=Lato&display=swap" rel="stylesheet" />
26
26
 
27
+ <!-- mathjax -->
28
+ <script type="text/javascript" async
29
+ src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?TeX-AMS-MML_HTMLorMML">
30
+ </script>
31
+
32
+
27
33
  <!-- site-specific -->
28
34
  <link rel="stylesheet" href="/assets/css/styles.css" />
data/_includes/nav.html CHANGED
File without changes
@@ -0,0 +1,27 @@
1
+ <div class="slide"
2
+ {% if include.image %}
3
+ style="background-image:url('{{ include.image }}');"
4
+ {% endif %}
5
+ >
6
+ {% if include.link %}
7
+ <a href="{{ include.link }}" target="_blank" rel="noopener" class="block-link">
8
+ {% endif %}
9
+
10
+ {% if include.video %}
11
+ <video autoplay muted loop>
12
+ <source src="{{ include.video }}" type="video/webm">
13
+ </video>
14
+ {% endif %}
15
+
16
+ <div class="slide-tint"></div>
17
+
18
+ <div class="container">
19
+ <div class="slide-overlay">
20
+ <h1><strong>{{ include.title }}</strong></h1>
21
+ <p>{{ include.subtitle }}</p>
22
+ </div>
23
+ </div>
24
+ {% if include.link %}
25
+ </a>
26
+ {% endif %}
27
+ </div>
File without changes
data/_layouts/blog.html CHANGED
@@ -2,10 +2,36 @@
2
2
  layout: page
3
3
  ---
4
4
 
5
+ <div class="text-center">
5
6
  {{ content }}
7
+ </div>
6
8
 
7
9
  {% for post in site.posts %}
8
10
 
11
+ <div class="post-banner">
12
+ <a class="post-link" href="{{ post.url }}">
13
+ <div class="row">
14
+ <div class="col-md-3 d-none d-md-block">
15
+ {% if post.image %}
16
+ <img src="{{ post.image }}" loading="lazy">
17
+ {% else %}
18
+ <img src="{{ site.data.site.default_image }}" loading="lazy">
19
+ {% endif %}
20
+ </div>
21
+ <div class="col-md-3 d-xs-block d-md-none">
22
+ <hr>
23
+ </div>
24
+ <div class="col-md-9">
25
+ <h1>{{ post.title }}</h1>
26
+ <p>{{ post.excerpt | truncate: 200 }}</p>
27
+ </div>
28
+ </div>
29
+ </a>
30
+ </div>
31
+
32
+ {% endfor %}
33
+
34
+ <!--
9
35
  <div class="tile-col col-lg-6">
10
36
  <a class="tile-link" href="{{ post.url }}">
11
37
  <div class="tile">
@@ -17,12 +43,13 @@ layout: page
17
43
  {% endif %}
18
44
 
19
45
  <div class="tile-caption">
20
- {{ post.excerpt }}
46
+ <h1>{{ post.title }}</h1>
47
+ {{ post.excerpt | truncate: 150 }}
21
48
  </div>
22
49
 
23
50
 
24
51
  <div class="tile-cta d-none d-md-block">
25
- <span>More</span>
52
+ <span>Read</span>
26
53
  &nbsp;
27
54
  <i class="fas fa-arrow-right" aria-hidden="true"></i>
28
55
  </div>
@@ -35,5 +62,4 @@ layout: page
35
62
  </div>
36
63
  </a>
37
64
  </div>
38
-
39
- {% endfor %}
65
+ -->
File without changes
@@ -11,12 +11,12 @@
11
11
 
12
12
  <body>
13
13
 
14
- {% include nav.html %}
15
-
16
- {{ content }}
17
-
18
- {% include footer.html %}
14
+ <div class="content-wrap">
15
+ {% include nav.html %}
19
16
 
17
+ {{ content }}
18
+ </div>
19
+ {% include footer.html %}
20
20
  </body>
21
21
 
22
22
  </html>
@@ -0,0 +1,12 @@
1
+ ---
2
+ layout: page
3
+ ---
4
+
5
+ <div class="row error-container">
6
+ <div class="col-md-6 error-number">
7
+ <p class="big-error-number">{{ page.error_number }}</p>
8
+ </div>
9
+ <div class="col-md-6 error-description">
10
+ {{ content }}
11
+ </div>
12
+ </div>
File without changes
data/_layouts/page.html CHANGED
File without changes
data/_layouts/post.html CHANGED
@@ -1,5 +1,16 @@
1
1
  ---
2
- layout: page
2
+ layout: default
3
3
  ---
4
4
 
5
- {{ content }}
5
+ <div class="post-jumbo">
6
+ <div class="container">
7
+ <h1 class="title">{{ page.title }}</h1>
8
+ <div class="metadata">
9
+ <p>{{ page.date | date_to_string }}</p>
10
+ </div>
11
+ </div>
12
+ </div>
13
+
14
+ <div class="post-main container">
15
+ {{ content }}
16
+ </div>
File without changes
File without changes
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+
5
+ <div class="container page slideshow">
6
+
7
+ {{ content }}
8
+
9
+ </div>
data/_sass/basics.scss ADDED
@@ -0,0 +1,88 @@
1
+ @import "colors";
2
+
3
+ .center {
4
+ text-align: center;
5
+ }
6
+
7
+ .bordered-box {
8
+ padding: 10px;
9
+ margin-top: 20px;
10
+ margin-bottom: 20px;
11
+
12
+ border-style: solid;
13
+ border-width: 2px;
14
+ border-color: $border-box;
15
+ border-radius: 5px;
16
+ }
17
+
18
+
19
+ @media only screen and (max-width: 992px) {
20
+ .card-columns.index-cards {
21
+ column-count: 1;
22
+ }
23
+ }
24
+
25
+ @media only screen and (min-width: 992px) {
26
+ .card-columns.index-cards {
27
+ column-count: 2;
28
+ }
29
+ }
30
+
31
+ @media only screen and (min-width: 1200px) {
32
+ .card-columns.index-cards {
33
+ column-count: 3;
34
+ }
35
+ }
36
+
37
+
38
+ .btn {
39
+ background-color: $button;
40
+ }
41
+
42
+ .btn-xl {
43
+ padding: 15px 30px;
44
+ font-size: 36px;
45
+ border-radius: 15px;
46
+ }
47
+
48
+ .showcase-title h1 {
49
+ font-size: 72px;
50
+ }
51
+
52
+ .iframe-container {
53
+ position: relative;
54
+ padding-bottom: 56.25%; /* 16:9 */
55
+ padding-top: 25px;
56
+ height: 0;
57
+ }
58
+
59
+ .iframe-container iframe {
60
+ position: absolute;
61
+ top: 0;
62
+ left: 0;
63
+ width: 100%;
64
+ height: 100%;
65
+ }
66
+
67
+ .contact-badge {
68
+ text-align: center;
69
+ margin-bottom: 20px;
70
+
71
+ border: 2px solid $border-box;
72
+ border-radius: 5px;
73
+
74
+ padding-top: 10px;
75
+ padding-bottom: 5px;
76
+ }
77
+
78
+ .contact-badge h1 {
79
+ font-size: 48px;
80
+ }
81
+
82
+ .contact-badge h2 {
83
+ font-size: 24px;
84
+ }
85
+
86
+ .card {
87
+ margin-bottom: 20px;
88
+ }
data/_sass/colors.scss CHANGED
File without changes
@@ -0,0 +1,47 @@
1
+ @import "colors";
2
+
3
+ body {
4
+ font-family: 'Lato', sans-serif;
5
+ font-size: 20px;
6
+
7
+ color: $text-color;
8
+ background-color: $background-color;
9
+ }
10
+
11
+ h1, h2, h3, h4, h5, h6 {
12
+ color: $heading-text-color;
13
+ font-family: 'Ubuntu', sans-serif;
14
+ }
15
+
16
+ a {
17
+ color: $link;
18
+ }
19
+
20
+ a:hover {
21
+ color: $link;
22
+ }
23
+
24
+ a.block-link:hover {
25
+ text-decoration: none;
26
+ }
27
+
28
+ p, ul, ol {
29
+ color: $text-color;
30
+ }
31
+
32
+ strong, em {
33
+ color: $emphasis-text-color;
34
+ }
35
+
36
+ hr {
37
+ margin-top: 40px;
38
+ margin-bottom: 20px;
39
+ border: 1px solid $text-color;
40
+ }
41
+
42
+ blockquote {
43
+ margin: 40px 10px;
44
+ color: $blockquote;
45
+ font-style: italic;
46
+ font-weight: bold;
47
+ }
data/_sass/error.scss ADDED
@@ -0,0 +1,13 @@
1
+ .error-container {
2
+ width: 100%;
3
+ }
4
+
5
+ .error-number {
6
+ font-size: 120px;
7
+ text-align: right;
8
+ margin-bottom: 0;
9
+ }
10
+
11
+ .error-description {
12
+ margin-top: 50px;
13
+ }
data/_sass/footer.scss ADDED
@@ -0,0 +1,35 @@
1
+ @import "colors.scss";
2
+
3
+ .footer {
4
+ background-color: $footer-background;
5
+ }
6
+
7
+ .footer p, .footer a {
8
+ color: $footer-text;
9
+ }
10
+
11
+ table, tbody, td, th {
12
+ border: 2px solid #999;
13
+ padding: 0.5rem 0.7rem;
14
+ }
15
+
16
+ table {
17
+ margin-bottom: 1rem;
18
+ }
19
+
20
+
21
+ html, body {
22
+ height: 100%;
23
+ }
24
+
25
+ body {
26
+ display: flex;
27
+ flex-direction: column;
28
+ }
29
+
30
+ .content-wrap {
31
+ flex: 1 0 auto;
32
+ }
33
+ .footer {
34
+ flex-shrink: 0;
35
+ }
data/_sass/image.scss ADDED
@@ -0,0 +1,50 @@
1
+
2
+ .page img {
3
+ display: block;
4
+ margin-left: auto;
5
+ margin-right: auto;
6
+ }
7
+
8
+
9
+
10
+ img {
11
+ object-fit: contain;
12
+ max-height: 600px;
13
+ }
14
+
15
+ img:not(.actual-size) {
16
+ width: 100%;
17
+ }
18
+
19
+ img.actual-size {
20
+ margin-left: auto;
21
+ margin-right: auto;
22
+ display: block;
23
+ margin-bottom: 10px;
24
+ }
25
+
26
+ @mixin halfwidth-img {
27
+ width: 50%;
28
+ max-height: 400px;
29
+ }
30
+
31
+ .halfwidth-left img {
32
+ @include halfwidth-img;
33
+ float: left;
34
+ }
35
+
36
+ .halfwidth-right img {
37
+ @include halfwidth-img;
38
+ float: right;
39
+ }
40
+
41
+ .small-img {
42
+ max-width: 200px;
43
+ max-height: 200px;
44
+ }
45
+
46
+ .caption {
47
+ text-align: center;
48
+ margin-top: 1rem;
49
+ color: $text-color;
50
+ }
data/_sass/main.scss CHANGED
@@ -1,191 +1,11 @@
1
1
  @import "colors";
2
+ @import "defaults";
3
+ @import "basics";
4
+ @import "image";
2
5
  @import "nav";
6
+ @import "footer";
3
7
  @import "tiles";
4
-
5
- body {
6
- font-family: 'Lato', sans-serif;
7
- font-size: 20px;
8
-
9
- color: $text-color;
10
- background-color: $background-color;
11
- }
12
-
13
- h1, h2, h3, h4, h5, h6 {
14
- color: $heading-text-color;
15
- font-family: 'Ubuntu', sans-serif;
16
- }
17
-
18
- a {
19
- color: $link;
20
- }
21
-
22
- a:hover {
23
- color: $link;
24
- }
25
-
26
- a.block-link:hover {
27
- text-decoration: none;
28
- }
29
-
30
- p, ul, ol {
31
- color: $text-color;
32
- }
33
-
34
- strong, em {
35
- color: $emphasis-text-color;
36
- }
37
-
38
- hr {
39
- margin-top: 40px;
40
- margin-bottom: 20px;
41
- border: 1px solid $text-color;
42
- }
43
-
44
- blockquote {
45
- margin: 40px 10px;
46
- color: $blockquote;
47
- font-style: italic;
48
- font-weight: bold;
49
- }
50
-
51
- code {
52
- color: $code !important;
53
- }
54
-
55
- .center {
56
- text-align: center;
57
- }
58
-
59
- .bordered-box {
60
- padding: 10px;
61
- margin-top: 20px;
62
- margin-bottom: 20px;
63
-
64
- border-style: solid;
65
- border-width: 2px;
66
- border-color: $border-box;
67
- border-radius: 5px;
68
- }
69
-
70
- .footer {
71
- background-color: $footer-background;
72
- }
73
-
74
- .footer p, .footer a {
75
- color: $footer-text;
76
- }
77
-
78
- .page img {
79
- display: block;
80
- margin-left: auto;
81
- margin-right: auto;
82
- }
83
-
84
-
85
- @media only screen and (max-width: 992px) {
86
- .card-columns.index-cards {
87
- column-count: 1;
88
- }
89
- }
90
-
91
- @media only screen and (min-width: 992px) {
92
- .card-columns.index-cards {
93
- column-count: 2;
94
- }
95
- }
96
-
97
- @media only screen and (min-width: 1200px) {
98
- .card-columns.index-cards {
99
- column-count: 3;
100
- }
101
- }
102
-
103
- .btn {
104
- background-color: $button;
105
- }
106
-
107
- .btn-xl {
108
- padding: 15px 30px;
109
- font-size: 36px;
110
- border-radius: 15px;
111
- }
112
-
113
- .showcase-title h1 {
114
- font-size: 72px;
115
- }
116
-
117
- .caption {
118
- text-align: center;
119
- margin-top: 1rem;
120
- color: $text-color;
121
- }
122
-
123
- .small-img {
124
- max-width: 200px;
125
- max-height: 200px;
126
- }
127
-
128
- img {
129
- object-fit: contain;
130
- max-height: 600px;
131
- }
132
-
133
- img:not(.actual-size) {
134
- width: 100%;
135
- }
136
-
137
- img.actual-size {
138
- margin-left: auto;
139
- margin-right: auto;
140
- display: block;
141
- margin-bottom: 10px;
142
- }
143
-
144
- @mixin halfwidth-img {
145
- width: 50%;
146
- max-height: 400px;
147
- }
148
-
149
- .halfwidth-left img {
150
- @include halfwidth-img;
151
- float: left;
152
- }
153
-
154
- .halfwidth-right img {
155
- @include halfwidth-img;
156
- float: right;
157
- }
158
-
159
- .iframe-container {
160
- position: relative;
161
- padding-bottom: 56.25%; /* 16:9 */
162
- padding-top: 25px;
163
- height: 0;
164
- }
165
-
166
- .iframe-container iframe {
167
- position: absolute;
168
- top: 0;
169
- left: 0;
170
- width: 100%;
171
- height: 100%;
172
- }
173
-
174
- .contact-badge {
175
- text-align: center;
176
- margin-bottom: 20px;
177
-
178
- border: 2px solid $border-box;
179
- border-radius: 5px;
180
-
181
- padding-top: 10px;
182
- padding-bottom: 5px;
183
- }
184
-
185
- .contact-badge h1 {
186
- font-size: 48px;
187
- }
188
-
189
- .contact-badge h2 {
190
- font-size: 24px;
191
- }
8
+ @import "syntax";
9
+ @import "error";
10
+ @import "slide";
11
+ @import "post";
data/_sass/nav.scss CHANGED
File without changes
data/_sass/post.scss ADDED
@@ -0,0 +1,32 @@
1
+ .post-jumbo {
2
+ background-color: $footer-background;
3
+ }
4
+
5
+ .post-jumbo .title {
6
+ padding-top: 50px;
7
+ padding-bottom: 50px;
8
+ }
9
+
10
+ .post-jumbo h1.title {
11
+ font-size: 72px;
12
+ }
13
+
14
+ .post-jumbo .metadata {
15
+ text-align: right;
16
+ padding-bottom: 20px;
17
+ }
18
+
19
+ .post-jumbo .metadata p {
20
+ font-size: 24px;
21
+ color: #000;
22
+ }
23
+
24
+ .post-main {
25
+ padding-top: 20px;
26
+ padding-bottom: 40px;
27
+ }
28
+
29
+ .post-banner {
30
+ padding-top: 20px;
31
+ padding-bottom: 50px;
32
+ }
data/_sass/slide.scss ADDED
@@ -0,0 +1,77 @@
1
+ .slide {
2
+ left: calc(-50vw + 50%);
3
+
4
+ position: relative;
5
+ width: 100vw;
6
+ height: 100vh;
7
+
8
+ background-attachment: fixed;
9
+ background-position: center;
10
+ background-repeat: no-repeat;
11
+ background-size: cover;
12
+
13
+ z-index: 0;
14
+ }
15
+
16
+ .slide video {
17
+ position: absolute;
18
+
19
+ top: 50%;
20
+ left: 50%;
21
+ transform: translate(-50%, -50%);
22
+
23
+ width: 100%;
24
+ height: 100%;
25
+
26
+ object-fit: cover;
27
+
28
+ z-index: 1;
29
+ }
30
+
31
+ .slide-tint {
32
+ position: absolute;
33
+ height: 100%;
34
+ width: 100%;
35
+
36
+ z-index: 2;
37
+ opacity: 0.4;
38
+ }
39
+
40
+ .slide .container {
41
+ position: relative;
42
+ height: 100%;
43
+ }
44
+
45
+ .slide-overlay {
46
+ margin: 20px;
47
+ padding: 20px;
48
+ background-color: rgba(0, 0, 0, 0.7);
49
+ position: absolute;
50
+ z-index: 3;
51
+ right: 0;
52
+ bottom: 0;
53
+ text-align: right;
54
+ width: 70%;
55
+ }
56
+
57
+ .slide-overlay p {
58
+ color: #FFF;
59
+ }
60
+
61
+ @media only screen and (min-width: 992px) {
62
+ .slideshow .slide-overlay h1 {
63
+ font-size: 72px;
64
+ }
65
+
66
+ .slideshow .slide-overlay p {
67
+ font-size: 30px;
68
+ }
69
+
70
+ .slideshow h1 {
71
+ font-size: 60px;
72
+ }
73
+
74
+ .slideshow p {
75
+ font-size: 30px;
76
+ }
77
+ }
data/_sass/syntax.scss ADDED
@@ -0,0 +1,171 @@
1
+
2
+ /*
3
+ * GitHub style for Pygments syntax highlighter, for use with Jekyll
4
+ * Courtesy of GitHub.com
5
+ *
6
+ * src: https://github.com/aahan/pygments-github-style
7
+ */
8
+
9
+ .highlight pre, pre {
10
+ background-color: #f8f8f8;
11
+ border: 1px solid #ccc;
12
+ padding: 6px 10px;
13
+ border-radius: 3px;
14
+ }
15
+
16
+ .highlight {
17
+ .hll {
18
+ background-color: #f8f8f8;
19
+ border: 1px solid #ccc;
20
+ padding: 6px 10px;
21
+ border-radius: 3px;
22
+ }
23
+ .c {
24
+ color: #999988;
25
+ font-style: italic;
26
+ }
27
+ .err {
28
+ color: #a61717;
29
+ background-color: #e3d2d2;
30
+ }
31
+ .k, .o {
32
+ font-weight: bold;
33
+ }
34
+ .cm {
35
+ color: #999988;
36
+ font-style: italic;
37
+ }
38
+ .cp {
39
+ color: #999999;
40
+ font-weight: bold;
41
+ }
42
+ .c1 {
43
+ color: #999988;
44
+ font-style: italic;
45
+ }
46
+ .cs {
47
+ color: #999999;
48
+ font-weight: bold;
49
+ font-style: italic;
50
+ }
51
+ .gd {
52
+ color: #000000;
53
+ background-color: #ffdddd;
54
+ .x {
55
+ color: #000000;
56
+ background-color: #ffaaaa;
57
+ }
58
+ }
59
+ .ge {
60
+ font-style: italic;
61
+ }
62
+ .gr {
63
+ color: #aa0000;
64
+ }
65
+ .gh {
66
+ color: #999999;
67
+ }
68
+ .gi {
69
+ color: #000000;
70
+ background-color: #ddffdd;
71
+ .x {
72
+ color: #000000;
73
+ background-color: #aaffaa;
74
+ }
75
+ }
76
+ .go {
77
+ color: #888888;
78
+ }
79
+ .gp {
80
+ color: #555555;
81
+ }
82
+ .gs {
83
+ font-weight: bold;
84
+ }
85
+ .gu {
86
+ color: #800080;
87
+ font-weight: bold;
88
+ }
89
+ .gt {
90
+ color: #aa0000;
91
+ }
92
+ .kc, .kd, .kn, .kp, .kr {
93
+ font-weight: bold;
94
+ }
95
+ .kt {
96
+ color: #445588;
97
+ font-weight: bold;
98
+ }
99
+ .m {
100
+ color: #009999;
101
+ }
102
+ .s {
103
+ color: #dd1144;
104
+ }
105
+ .n {
106
+ color: #333333;
107
+ }
108
+ .na {
109
+ color: teal;
110
+ }
111
+ .nb {
112
+ color: #0086b3;
113
+ }
114
+ .nc {
115
+ color: #445588;
116
+ font-weight: bold;
117
+ }
118
+ .no {
119
+ color: teal;
120
+ }
121
+ .ni {
122
+ color: purple;
123
+ }
124
+ .ne, .nf {
125
+ color: #990000;
126
+ font-weight: bold;
127
+ }
128
+ .nn {
129
+ color: #555555;
130
+ }
131
+ .nt {
132
+ color: navy;
133
+ }
134
+ .nv {
135
+ color: teal;
136
+ }
137
+ .ow {
138
+ font-weight: bold;
139
+ }
140
+ .w {
141
+ color: #bbbbbb;
142
+ }
143
+ .mf, .mh, .mi, .mo {
144
+ color: #009999;
145
+ }
146
+ .sb, .sc, .sd, .s2, .se, .sh, .si, .sx {
147
+ color: #dd1144;
148
+ }
149
+ .sr {
150
+ color: #009926;
151
+ }
152
+ .s1 {
153
+ color: #dd1144;
154
+ }
155
+ .ss {
156
+ color: #990073;
157
+ }
158
+ .bp {
159
+ color: #999999;
160
+ }
161
+ .vc, .vg, .vi {
162
+ color: teal;
163
+ }
164
+ .il {
165
+ color: #009999;
166
+ }
167
+ .gc {
168
+ color: #999;
169
+ background-color: #EAF2F5;
170
+ }
171
+ }
data/_sass/tiles.scss CHANGED
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-theme-breq
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wesley Chalmers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-12-14 00:00:00.000000000 Z
11
+ date: 2021-03-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -39,18 +39,29 @@ files:
39
39
  - _includes/gallery.html
40
40
  - _includes/meta.html
41
41
  - _includes/nav.html
42
+ - _includes/slide.html
42
43
  - _includes/youtube.html
43
44
  - _layouts/blog.html
44
45
  - _layouts/contact.html
45
46
  - _layouts/default.html
47
+ - _layouts/error.html
46
48
  - _layouts/gallery.html
47
49
  - _layouts/page.html
48
50
  - _layouts/post.html
49
51
  - _layouts/project.html
50
52
  - _layouts/showcase.html
53
+ - _layouts/slideshow.html
54
+ - _sass/basics.scss
51
55
  - _sass/colors.scss
56
+ - _sass/defaults.scss
57
+ - _sass/error.scss
58
+ - _sass/footer.scss
59
+ - _sass/image.scss
52
60
  - _sass/main.scss
53
61
  - _sass/nav.scss
62
+ - _sass/post.scss
63
+ - _sass/slide.scss
64
+ - _sass/syntax.scss
54
65
  - _sass/tiles.scss
55
66
  - assets/css/styles.scss
56
67
  - assets/icons/android-chrome-192x192.png
@@ -63,6 +74,7 @@ files:
63
74
  - assets/icons/mstile-150x150.png
64
75
  - assets/icons/site.webmanifest
65
76
  - assets/images/pansexual.png
77
+ - assets/videos/344.webm
66
78
  homepage: https://breq.dev/
67
79
  licenses:
68
80
  - MIT