jekyll-wren 0.4 → 0.4.1

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 (67) hide show
  1. checksums.yaml +4 -4
  2. data/LICENSE.md +9 -9
  3. data/README.md +180 -177
  4. data/_includes/custom-foot.html +4 -4
  5. data/_includes/custom-head.html +13 -13
  6. data/_includes/custom-meta.html +5 -5
  7. data/_includes/footer.html +23 -23
  8. data/_includes/head.html +21 -21
  9. data/_includes/meta.html +82 -82
  10. data/_includes/navigation.html +70 -70
  11. data/_includes/reading-time.html +41 -41
  12. data/_includes/social-list.html +46 -46
  13. data/_includes/video-player.html +66 -66
  14. data/_layouts/author-list.html +73 -73
  15. data/_layouts/default.html +16 -16
  16. data/_layouts/error.html +9 -9
  17. data/_layouts/page.html +14 -14
  18. data/_layouts/post-list.html +67 -67
  19. data/_layouts/post.html +16 -16
  20. data/_layouts/tag-list.html +54 -54
  21. data/_sass/wren/content.scss +345 -345
  22. data/_sass/wren/initialize.scss +118 -118
  23. data/_sass/wren/layout.scss +295 -295
  24. data/assets/flav.svg +4 -4
  25. data/assets/nav-icons/about.svg +2 -2
  26. data/assets/nav-icons/blog.svg +2 -2
  27. data/assets/nav-icons/comments.svg +3 -3
  28. data/assets/nav-icons/default.svg +2 -2
  29. data/assets/nav-icons/home.svg +4 -4
  30. data/assets/nav-icons/rss.svg +2 -2
  31. data/assets/nav-icons/top.svg +2 -2
  32. data/assets/nav-icons/work.svg +4 -4
  33. data/assets/social-icons/Blogger.svg +3 -3
  34. data/assets/social-icons/Blogspot.svg +3 -0
  35. data/assets/social-icons/DEV.svg +3 -3
  36. data/assets/social-icons/Default.svg +3 -3
  37. data/assets/social-icons/Dribbble.svg +3 -3
  38. data/assets/social-icons/Facebook.svg +3 -3
  39. data/assets/social-icons/Flickr.svg +3 -3
  40. data/assets/social-icons/Ghost.svg +3 -3
  41. data/assets/social-icons/GitHub.svg +3 -3
  42. data/assets/social-icons/GitLab.svg +3 -3
  43. data/assets/social-icons/HowLongToBeat.svg +3 -0
  44. data/assets/social-icons/Instagram.svg +5 -5
  45. data/assets/social-icons/Keybase.svg +6 -6
  46. data/assets/social-icons/LinkedIn.svg +3 -3
  47. data/assets/social-icons/Mastodon.svg +3 -3
  48. data/assets/social-icons/Medium.svg +5 -5
  49. data/assets/social-icons/Micro.blog.svg +3 -3
  50. data/assets/social-icons/Pinterest.svg +3 -3
  51. data/assets/social-icons/Reddit.svg +3 -3
  52. data/assets/social-icons/StackOverflow.svg +3 -3
  53. data/assets/social-icons/StoryGraph.svg +6 -0
  54. data/assets/social-icons/Strava.svg +4 -0
  55. data/assets/social-icons/Telegram.svg +3 -3
  56. data/assets/social-icons/Tumblr.svg +3 -3
  57. data/assets/social-icons/Twitter.svg +3 -3
  58. data/assets/social-icons/Wordpress.svg +4 -4
  59. data/assets/social-icons/Wren.svg +3 -0
  60. data/assets/social-icons/YouTube.svg +3 -3
  61. data/assets/style.scss +14 -14
  62. data/errors/400.md +9 -9
  63. data/errors/403.md +9 -9
  64. data/errors/404.md +9 -9
  65. data/errors/418.md +12 -12
  66. data/errors/500.md +9 -9
  67. metadata +9 -8
@@ -1,118 +1,118 @@
1
- @charset "utf-8";
2
-
3
- // This file is the hub from which the rest of the SASS is
4
- // controlled. It defines all of the variables used in the
5
- // other files (and which can be redefined by the users in
6
- // `style.scss`), defines mixin shortcuts, and imports the
7
- // other SASS files in the theme.
8
-
9
-
10
- // Default Variables
11
- // =================
12
-
13
- // General content font related default values
14
- $base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Segoe UI Symbol", "Segoe UI Emoji", "Apple Color Emoji", Helvetica, Roboto, Arial, sans-serif !default;
15
- $base-font-size: 16px !default;
16
- $base-font-weight: 400 !default;
17
- $small-font-size: $base-font-size * 0.875 !default;
18
- $base-line-height: 1.5 !default;
19
- // Extra font tweaks for headers
20
- $base-header-weight: 600 !default;
21
- $base-h1-alignment: center;
22
-
23
- // Spacing related default values
24
- $spacing-unit: 30px !default;
25
- $table-text-align: left !default;
26
- $content-width: 800px !default;
27
- $nav-bar-height: 48px !default; // BUG SVGs themselves don't resize
28
-
29
- // Border radius for page content, code blocks, and tables
30
- $base-border-radius: 12px !default ;
31
-
32
- // Theme color default variables
33
- $brand-color: #828282 !default;
34
- $brand-color-light: lighten($brand-color, 40%) !default;
35
- $brand-color-dark: darken($brand-color, 25%) !default;
36
- $text-color: #3d3d3d !default;
37
- $background-color: #9b9da3 !default;
38
- $page-color: #fdfdfd !default;
39
- $nav-color: $page-color !default;
40
- $border-color: $brand-color-light !default;
41
-
42
- // Shadows for elements and icons
43
- $base-shadow: 0 0.25em 0.25em rgba(0, 0, 0, 0.1) !default;
44
- $base-drop-shadow: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2)) !default;
45
-
46
- // Colors for link formatting
47
- $link-base-color: #2a7ae2 !default;
48
- $link-visited-color: darken($link-base-color, 15%) !default;
49
- $link-hover-color: $text-color !default;
50
-
51
- // Colors for table formatting
52
- $table-text-color: lighten($text-color, 18%) !default;
53
- $table-zebra-color: lighten($brand-color, 46%) !default;
54
- $table-header-bg-color: lighten($brand-color, 43%) !default;
55
- $table-header-border: lighten($brand-color, 37%) !default;
56
- $table-border-color: $border-color !default;
57
-
58
- // Fonts and colors for code blocks and syntax highlighting
59
- $code-font-family: "Menlo", "Inconsolata", "Consolas", "Roboto Mono", "Ubuntu Mono", "Liberation Mono", "Courier New", monospace;
60
- $code-background-color: #eeeeff !default; // background color for blocks and inline code
61
- // Variables relating to snippets which change font color
62
- $syntax-comment-color: #998 !default; // comments in all their forms
63
- $syntax-string-color: #d14 !default; // literal strings, exc. regex & symbols
64
- $syntax-number-color: #099 !default; // all the numbers
65
- $syntax-variable-color: #008080 !default; // variables, constants, etc
66
- $syntax-error-color: #a61717 !default; // various errors and exceptions
67
- $syntax-function-color: #900 !default; // functions (prev. included exceptions)
68
- // Variables relating to snippets which change background and font colors
69
- $syntax-ins-del-color: #000 !default; // font for insertions and deletions
70
- $syntax-ins-background: #afa !default; // background color for insertions
71
- $syntax-del-background: #faa !default; // background color for deletions
72
- $syntax-err-background: #e3d2d2 !default; // background for errors
73
- // Variables which are only used once for fairly niche snippets
74
- $syntax-builtin-color: #0086B3 !default; // builtins
75
- $syntax-entity-color: #800080 !default; // entities
76
- $syntax-tag-color: #000080 !default; // tags
77
- $syntax-symbol-color: #990073 !default; // string.symbols
78
- $syntax-regex-color: #009926 !default; // string.regex
79
- $syntax-whitespace-color: #bbb !default; // text.whitespace
80
- $syntax-output-color: #888 !default; // generic output
81
- $syntax-subhead-color: #aaa !default; // subheadings
82
- // Variables which are used for two distinct snippets
83
- $syntax-class-color: #458 !default; // classes and keywords
84
- $syntax-prompt-color: #555 !default; // prompt and namespace
85
-
86
- // Size at which to switch to large screen interface
87
- $large-width: 800px !default;
88
-
89
-
90
- // SASS Mixins
91
- // ===========
92
-
93
- @mixin media-query($device) {
94
- // Use @content SASS only if displaying a screen
95
- // with a width of at least $device pixels.
96
- @media screen and (min-width: $device) {
97
- @content;
98
- }
99
- }
100
-
101
- @mixin if-large {
102
- // Query Wren uses to switch to the large screen interface
103
- @include media-query($large-width) { @content; }
104
- }
105
-
106
- @mixin relative-font-size($ratio) {
107
- // Scale the font by $ratio
108
- font-size: #{$ratio}rem;
109
- }
110
-
111
-
112
- // SASS Imports
113
- // ============
114
-
115
- @import
116
- "wren/content", // Styling for the base html content
117
- "wren/layout" // Sets the layout of the website
118
- ;
1
+ @charset "utf-8";
2
+
3
+ // This file is the hub from which the rest of the SASS is
4
+ // controlled. It defines all of the variables used in the
5
+ // other files (and which can be redefined by the users in
6
+ // `style.scss`), defines mixin shortcuts, and imports the
7
+ // other SASS files in the theme.
8
+
9
+
10
+ // Default Variables
11
+ // =================
12
+
13
+ // General content font related default values
14
+ $base-font-family: "Droid Sans" !default;
15
+ $base-font-size: 16px !default;
16
+ $base-font-weight: 400 !default;
17
+ $small-font-size: $base-font-size * 0.875 !default;
18
+ $base-line-height: 1.5 !default;
19
+ // Extra font tweaks for headers
20
+ $base-header-weight: 600 !default;
21
+ $base-h1-alignment: center;
22
+
23
+ // Spacing related default values
24
+ $spacing-unit: 30px !default;
25
+ $table-text-align: left !default;
26
+ $content-width: 800px !default;
27
+ $nav-bar-height: 48px !default; // BUG SVGs themselves don't resize
28
+
29
+ // Border radius for page content, code blocks, and tables
30
+ $base-border-radius: 12px !default ;
31
+
32
+ // Theme color default variables
33
+ $brand-color: #828282 !default;
34
+ $brand-color-light: lighten($brand-color, 40%) !default;
35
+ $brand-color-dark: darken($brand-color, 25%) !default;
36
+ $text-color: #3d3d3d !default;
37
+ $background-color: #9b9da3 !default;
38
+ $page-color: #fdfdfd !default;
39
+ $nav-color: $page-color !default;
40
+ $border-color: $brand-color-light !default;
41
+
42
+ // Shadows for elements and icons
43
+ $base-shadow: 0 0.25em 0.25em rgba(0, 0, 0, 0.1) !default;
44
+ $base-drop-shadow: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.2)) !default;
45
+
46
+ // Colors for link formatting
47
+ $link-base-color: #2a7ae2 !default;
48
+ $link-visited-color: darken($link-base-color, 15%) !default;
49
+ $link-hover-color: $text-color !default;
50
+
51
+ // Colors for table formatting
52
+ $table-text-color: lighten($text-color, 18%) !default;
53
+ $table-zebra-color: lighten($brand-color, 46%) !default;
54
+ $table-header-bg-color: lighten($brand-color, 43%) !default;
55
+ $table-header-border: lighten($brand-color, 37%) !default;
56
+ $table-border-color: $border-color !default;
57
+
58
+ // Fonts and colors for code blocks and syntax highlighting
59
+ $code-font-family: "Droid Sans Mono" !default;
60
+ $code-background-color: #eeeeff !default; // background color for blocks and inline code
61
+ // Variables relating to snippets which change font color
62
+ $syntax-comment-color: #998 !default; // comments in all their forms
63
+ $syntax-string-color: #d14 !default; // literal strings, exc. regex & symbols
64
+ $syntax-number-color: #099 !default; // all the numbers
65
+ $syntax-variable-color: #008080 !default; // variables, constants, etc
66
+ $syntax-error-color: #a61717 !default; // various errors and exceptions
67
+ $syntax-function-color: #900 !default; // functions (prev. included exceptions)
68
+ // Variables relating to snippets which change background and font colors
69
+ $syntax-ins-del-color: #000 !default; // font for insertions and deletions
70
+ $syntax-ins-background: #afa !default; // background color for insertions
71
+ $syntax-del-background: #faa !default; // background color for deletions
72
+ $syntax-err-background: #e3d2d2 !default; // background for errors
73
+ // Variables which are only used once for fairly niche snippets
74
+ $syntax-builtin-color: #0086B3 !default; // builtins
75
+ $syntax-entity-color: #800080 !default; // entities
76
+ $syntax-tag-color: #000080 !default; // tags
77
+ $syntax-symbol-color: #990073 !default; // string.symbols
78
+ $syntax-regex-color: #009926 !default; // string.regex
79
+ $syntax-whitespace-color: #bbb !default; // text.whitespace
80
+ $syntax-output-color: #888 !default; // generic output
81
+ $syntax-subhead-color: #aaa !default; // subheadings
82
+ // Variables which are used for two distinct snippets
83
+ $syntax-class-color: #458 !default; // classes and keywords
84
+ $syntax-prompt-color: #555 !default; // prompt and namespace
85
+
86
+ // Size at which to switch to large screen interface
87
+ $large-width: 800px !default;
88
+
89
+
90
+ // SASS Mixins
91
+ // ===========
92
+
93
+ @mixin media-query($device) {
94
+ // Use @content SASS only if displaying a screen
95
+ // with a width of at least $device pixels.
96
+ @media screen and (min-width: $device) {
97
+ @content;
98
+ }
99
+ }
100
+
101
+ @mixin if-large {
102
+ // Query Wren uses to switch to the large screen interface
103
+ @include media-query($large-width) { @content; }
104
+ }
105
+
106
+ @mixin relative-font-size($ratio) {
107
+ // Scale the font by $ratio
108
+ font-size: #{$ratio}rem;
109
+ }
110
+
111
+
112
+ // SASS Imports
113
+ // ============
114
+
115
+ @import
116
+ "wren/content", // Styling for the base html content
117
+ "wren/layout" // Sets the layout of the website
118
+ ;