dream-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.
Files changed (95) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/README.md +48 -0
  4. data/_includes/head.html +17 -0
  5. data/_includes/navigation.html +17 -0
  6. data/_layouts/home.html +29 -0
  7. data/_layouts/page.html +5 -0
  8. data/_layouts/post.html +16 -0
  9. data/_sass/base/_base.scss +14 -0
  10. data/_sass/base/_buttons.scss +43 -0
  11. data/_sass/base/_forms.scss +95 -0
  12. data/_sass/base/_layout.scss +18 -0
  13. data/_sass/base/_lists.scss +19 -0
  14. data/_sass/base/_media.scss +9 -0
  15. data/_sass/base/_tables.scss +29 -0
  16. data/_sass/base/_typography.scss +45 -0
  17. data/_sass/base/_variables.scss +41 -0
  18. data/_sass/bourbon/_bourbon.scss +54 -0
  19. data/_sass/bourbon/bourbon/helpers/_buttons-list.scss +14 -0
  20. data/_sass/bourbon/bourbon/helpers/_scales.scss +27 -0
  21. data/_sass/bourbon/bourbon/helpers/_text-inputs-list.scss +26 -0
  22. data/_sass/bourbon/bourbon/library/_border-color.scss +26 -0
  23. data/_sass/bourbon/bourbon/library/_border-radius.scss +85 -0
  24. data/_sass/bourbon/bourbon/library/_border-style.scss +25 -0
  25. data/_sass/bourbon/bourbon/library/_border-width.scss +25 -0
  26. data/_sass/bourbon/bourbon/library/_buttons.scss +84 -0
  27. data/_sass/bourbon/bourbon/library/_clearfix.scss +25 -0
  28. data/_sass/bourbon/bourbon/library/_contrast-switch.scss +81 -0
  29. data/_sass/bourbon/bourbon/library/_ellipsis.scss +36 -0
  30. data/_sass/bourbon/bourbon/library/_font-face.scss +65 -0
  31. data/_sass/bourbon/bourbon/library/_font-stacks.scss +249 -0
  32. data/_sass/bourbon/bourbon/library/_hide-text.scss +24 -0
  33. data/_sass/bourbon/bourbon/library/_hide-visually.scss +70 -0
  34. data/_sass/bourbon/bourbon/library/_margin.scss +37 -0
  35. data/_sass/bourbon/bourbon/library/_modular-scale.scss +120 -0
  36. data/_sass/bourbon/bourbon/library/_overflow-wrap.scss +24 -0
  37. data/_sass/bourbon/bourbon/library/_padding.scss +36 -0
  38. data/_sass/bourbon/bourbon/library/_position.scss +62 -0
  39. data/_sass/bourbon/bourbon/library/_prefixer.scss +37 -0
  40. data/_sass/bourbon/bourbon/library/_shade.scss +32 -0
  41. data/_sass/bourbon/bourbon/library/_size.scss +50 -0
  42. data/_sass/bourbon/bourbon/library/_strip-unit.scss +17 -0
  43. data/_sass/bourbon/bourbon/library/_text-inputs.scss +163 -0
  44. data/_sass/bourbon/bourbon/library/_timing-functions.scss +38 -0
  45. data/_sass/bourbon/bourbon/library/_tint.scss +32 -0
  46. data/_sass/bourbon/bourbon/library/_triangle.scss +82 -0
  47. data/_sass/bourbon/bourbon/library/_value-prefixer.scss +37 -0
  48. data/_sass/bourbon/bourbon/settings/_settings.scss +75 -0
  49. data/_sass/bourbon/bourbon/utilities/_assign-inputs.scss +28 -0
  50. data/_sass/bourbon/bourbon/utilities/_compact-shorthand.scss +39 -0
  51. data/_sass/bourbon/bourbon/utilities/_contrast-ratio.scss +31 -0
  52. data/_sass/bourbon/bourbon/utilities/_directional-property.scss +70 -0
  53. data/_sass/bourbon/bourbon/utilities/_fetch-bourbon-setting.scss +16 -0
  54. data/_sass/bourbon/bourbon/utilities/_font-source-declaration.scss +51 -0
  55. data/_sass/bourbon/bourbon/utilities/_gamma.scss +21 -0
  56. data/_sass/bourbon/bourbon/utilities/_lightness.scss +24 -0
  57. data/_sass/bourbon/bourbon/utilities/_unpack-shorthand.scss +29 -0
  58. data/_sass/bourbon/bourbon/validators/_contains-falsy.scss +20 -0
  59. data/_sass/bourbon/bourbon/validators/_contains.scss +26 -0
  60. data/_sass/bourbon/bourbon/validators/_is-color.scss +13 -0
  61. data/_sass/bourbon/bourbon/validators/_is-length.scss +15 -0
  62. data/_sass/bourbon/bourbon/validators/_is-number.scss +15 -0
  63. data/_sass/bourbon/bourbon/validators/_is-size.scss +18 -0
  64. data/_sass/home.scss +55 -0
  65. data/_sass/main.scss +73 -0
  66. data/_sass/navigation.scss +45 -0
  67. data/_sass/neat/_neat.scss +26 -0
  68. data/_sass/neat/neat/functions/_neat-append-grid-visual.scss +21 -0
  69. data/_sass/neat/neat/functions/_neat-column-default.scss +23 -0
  70. data/_sass/neat/neat/functions/_neat-column-ratio.scss +24 -0
  71. data/_sass/neat/neat/functions/_neat-column-width.scss +25 -0
  72. data/_sass/neat/neat/functions/_neat-float-direction.scss +22 -0
  73. data/_sass/neat/neat/functions/_neat-merge-defaults.scss +23 -0
  74. data/_sass/neat/neat/functions/_neat-opposite-direction.scss +22 -0
  75. data/_sass/neat/neat/functions/_neat-parse-columns.scss +22 -0
  76. data/_sass/neat/neat/functions/_neat-parse-media.scss +20 -0
  77. data/_sass/neat/neat/functions/_retrieve-neat-settings.scss +19 -0
  78. data/_sass/neat/neat/mixins/_grid-collapse.scss +35 -0
  79. data/_sass/neat/neat/mixins/_grid-column.scss +39 -0
  80. data/_sass/neat/neat/mixins/_grid-container.scss +31 -0
  81. data/_sass/neat/neat/mixins/_grid-media.scss +67 -0
  82. data/_sass/neat/neat/mixins/_grid-push.scss +37 -0
  83. data/_sass/neat/neat/mixins/_grid-shift.scss +36 -0
  84. data/_sass/neat/neat/mixins/_grid-visual.scss +41 -0
  85. data/_sass/neat/neat/settings/_settings.scss +74 -0
  86. data/_sass/post.scss +24 -0
  87. data/assets/Linkedin.svg +17 -0
  88. data/assets/Twitter.svg +18 -0
  89. data/assets/github.png +0 -0
  90. data/assets/gitlab.svg +53 -0
  91. data/assets/icon.jpg +0 -0
  92. data/assets/icon.svg +95 -0
  93. data/assets/linkedin.png +0 -0
  94. data/assets/styles.scss +4 -0
  95. metadata +179 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 28f270dc54cd0b193617e5562696e8d0783d0d0a
4
+ data.tar.gz: 248241b3104461b1bc13f6cae9ce845f56b47a08
5
+ SHA512:
6
+ metadata.gz: 5984bc7a6b59a8a1a5748d18cc310d2e77087a64f01f36ba92e8380b529a4f41db047bb569635efd58745ac00f70ec2d2f3f8114b2382e1d62583a39adbc3724
7
+ data.tar.gz: 4ce94c68d61c30d3760ef362a62f586c4019ac3242fa3b7528b11ae39ef85572a763d5b479c021a7b8c7cd1f57a57736be49f00bb619fdce2326e66aeb0831b2
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017
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
13
+ all 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
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,48 @@
1
+ # dream-theme
2
+
3
+ Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes` and your sass in `_sass`. To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
4
+
5
+ TODO: Delete this and the text above, and describe your gem
6
+
7
+ ## Installation
8
+
9
+ Add this line to your Jekyll site's `Gemfile`:
10
+
11
+ ```ruby
12
+ gem "dream-theme"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: dream-theme
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install dream-theme
28
+
29
+ ## Usage
30
+
31
+ TODO: Write usage instructions here. Describe your available layouts, includes, and/or sass.
32
+
33
+ ## Contributing
34
+
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
+
37
+ ## Development
38
+
39
+ To set up your environment to develop this theme, run `bundle install`.
40
+
41
+ Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
42
+
43
+ When your theme is released, only the files in `_layouts`, `_includes`, and `_sass` tracked with Git will be released.
44
+
45
+ ## License
46
+
47
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
48
+
@@ -0,0 +1,17 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
4
+ <meta name="viewport" content="width=device-width, initial-scale=1">
5
+
6
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
7
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
8
+
9
+ <link rel="stylesheet" href="/assets/styles.css">
10
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
11
+ <link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
12
+
13
+ <link href="https://fonts.googleapis.com/css?family=Merriweather" rel="stylesheet">
14
+ {% if jekyll.environment == 'production' and site.google_analytics %}
15
+ {% include google-analytics.html %}
16
+ {% endif %}
17
+ </head>
@@ -0,0 +1,17 @@
1
+ <link rel="stylesheet" type="text/css" href="assets/styles.css">
2
+
3
+
4
+ <nav class="navigation">
5
+ <div class="name">
6
+ <span class="first"> Todd </span>
7
+ <span class="last"> Matthews </span>
8
+ </div>
9
+
10
+ <ul class="site-links">
11
+ {% for page in site.pages %}
12
+ <li class="site-link">
13
+ <a href="{{ page.url }}">{{ page.title }}</a>
14
+ </li>
15
+ {% endfor %}
16
+ </ul>
17
+ </nav>
@@ -0,0 +1,29 @@
1
+ {% include head.html %}
2
+
3
+ {% include navigation.html %}
4
+
5
+ <div class="container">
6
+ <div class="content">
7
+ <div class="half-width">
8
+ <h1 class="name"> Hi! I'm {{site.name}} </h1>
9
+ <span class="info"> {{ site.position }} @ <a href="https://www.freightchick.com">{{ site.company}}</a></span>
10
+ </br>
11
+ <div class="icons">
12
+ <a href="https://www.linkedin.com/in/{{site.linkedin}}"><img class="linkedin" src="/assets/linkedin.png"/></a>
13
+ <a href="https://www.gitlab.com/{{site.gitlab}}"><img src="/assets/gitlab.svg"/></a>
14
+ <a href="https://www.github.com/{{site.github}}"><img src="/assets/github.png"/></a>
15
+ </div>
16
+ </div>
17
+ <div class="half-width">
18
+ <ul class="posts">
19
+ {% for post in site.posts %}
20
+ <li class="post">
21
+ <p class="date"> {{ post.date }}</p>
22
+ <a class="title" href="{{ post.url }}">{{ post.title }}</a>
23
+ <p class="excerpt" >{{post.excerpt}}</p>
24
+ </li>
25
+ {% endfor %}
26
+ </ul>
27
+ </div>
28
+ </div>
29
+ </div>
@@ -0,0 +1,5 @@
1
+ {% include head.html %}
2
+
3
+ {% include navigation.html %}
4
+
5
+ {{ content }}
@@ -0,0 +1,16 @@
1
+
2
+ {% include head.html %}
3
+
4
+ {% include navigation.html %}
5
+
6
+
7
+
8
+ <div class="post-container">
9
+ <div class="title">
10
+ <h1>{{ page.title}} </h1>
11
+ </div>
12
+ <div class="date">
13
+ <p>{{ page.date}} </p>
14
+ </div>
15
+ {{ content }}
16
+ </div>
@@ -0,0 +1,14 @@
1
+ // Bitters 1.7.0
2
+ // http://bitters.bourbon.io
3
+ // Copyright 2013-2017 thoughtbot, inc.
4
+ // MIT License
5
+
6
+ @import "variables";
7
+
8
+ @import "buttons";
9
+ @import "forms";
10
+ @import "layout";
11
+ @import "lists";
12
+ @import "media";
13
+ @import "tables";
14
+ @import "typography";
@@ -0,0 +1,43 @@
1
+ $_button-background-color: $action-color;
2
+ $_button-background-color-hover: shade($action-color, 20%);
3
+
4
+ #{$all-buttons} {
5
+ appearance: none;
6
+ background-color: $_button-background-color;
7
+ border: 0;
8
+ border-radius: $base-border-radius;
9
+ color: contrast-switch($_button-background-color);
10
+ cursor: pointer;
11
+ display: inline-block;
12
+ font-family: $base-font-family;
13
+ font-size: 16px;
14
+ -webkit-font-smoothing: antialiased;
15
+ font-weight: 600;
16
+ line-height: 1;
17
+ padding: $small-spacing $base-spacing;
18
+ text-align: center;
19
+ text-decoration: none;
20
+ transition: background-color $base-duration $base-timing;
21
+ user-select: none;
22
+ vertical-align: middle;
23
+ white-space: nowrap;
24
+
25
+ &:hover {
26
+ background-color: $_button-background-color-hover;
27
+ color: contrast-switch($_button-background-color-hover);
28
+ }
29
+
30
+ &:focus {
31
+ outline: $focus-outline;
32
+ outline-offset: $focus-outline-offset;
33
+ }
34
+
35
+ &:disabled {
36
+ cursor: not-allowed;
37
+ opacity: 0.5;
38
+
39
+ &:hover {
40
+ background-color: $_button-background-color;
41
+ }
42
+ }
43
+ }
@@ -0,0 +1,95 @@
1
+ $_form-box-shadow: inset 0 1px 3px rgba(#000, 0.06);
2
+ $_form-box-shadow-focus: $_form-box-shadow, 0 0 5px rgba($action-color, 0.7);
3
+
4
+ fieldset {
5
+ background-color: transparent;
6
+ border: 0;
7
+ margin: 0;
8
+ padding: 0;
9
+ }
10
+
11
+ legend {
12
+ font-weight: 600;
13
+ margin-bottom: $small-spacing / 2;
14
+ padding: 0;
15
+ }
16
+
17
+ label {
18
+ display: block;
19
+ font-weight: 600;
20
+ margin-bottom: $small-spacing / 2;
21
+ }
22
+
23
+ input,
24
+ select,
25
+ textarea {
26
+ display: block;
27
+ font-family: $base-font-family;
28
+ font-size: 16px;
29
+ }
30
+
31
+ #{$all-text-inputs} {
32
+ appearance: none;
33
+ background-color: $base-background-color;
34
+ border: $base-border;
35
+ border-radius: $base-border-radius;
36
+ box-shadow: $_form-box-shadow;
37
+ box-sizing: border-box;
38
+ margin-bottom: $small-spacing;
39
+ padding: $base-spacing / 3;
40
+ transition: border-color $base-duration $base-timing;
41
+ width: 100%;
42
+
43
+ &:hover {
44
+ border-color: shade($base-border-color, 20%);
45
+ }
46
+
47
+ &:focus {
48
+ border-color: $action-color;
49
+ box-shadow: $_form-box-shadow-focus;
50
+ outline: none;
51
+ }
52
+
53
+ &:disabled {
54
+ background-color: shade($base-background-color, 5%);
55
+ cursor: not-allowed;
56
+
57
+ &:hover {
58
+ border: $base-border;
59
+ }
60
+ }
61
+
62
+ &::placeholder {
63
+ color: tint($base-font-color, 40%);
64
+ }
65
+ }
66
+
67
+ textarea {
68
+ resize: vertical;
69
+ }
70
+
71
+ [type="checkbox"],
72
+ [type="radio"] {
73
+ display: inline;
74
+ margin-right: $small-spacing / 2;
75
+ }
76
+
77
+ [type="file"] {
78
+ margin-bottom: $small-spacing;
79
+ width: 100%;
80
+ }
81
+
82
+ select {
83
+ margin-bottom: $small-spacing;
84
+ width: 100%;
85
+ }
86
+
87
+ [type="checkbox"],
88
+ [type="radio"],
89
+ [type="file"],
90
+ select {
91
+ &:focus {
92
+ outline: $focus-outline;
93
+ outline-offset: $focus-outline-offset;
94
+ }
95
+ }
@@ -0,0 +1,18 @@
1
+ html {
2
+ box-sizing: border-box;
3
+ }
4
+
5
+ *,
6
+ *::before,
7
+ *::after {
8
+ box-sizing: inherit;
9
+ }
10
+
11
+ html,
12
+ body {
13
+ height: 100%;
14
+ }
15
+
16
+ body {
17
+ margin: 0;
18
+ }
@@ -0,0 +1,19 @@
1
+ ul,
2
+ ol {
3
+ list-style-type: none;
4
+ margin: 0;
5
+ padding: 0;
6
+ }
7
+
8
+ dl {
9
+ margin: 0;
10
+ }
11
+
12
+ dt {
13
+ font-weight: 600;
14
+ margin: 0;
15
+ }
16
+
17
+ dd {
18
+ margin: 0;
19
+ }
@@ -0,0 +1,9 @@
1
+ figure {
2
+ margin: 0;
3
+ }
4
+
5
+ img,
6
+ picture {
7
+ margin: 0;
8
+ max-width: 100%;
9
+ }
@@ -0,0 +1,29 @@
1
+ table {
2
+ border-collapse: collapse;
3
+ margin: $base-spacing 0;
4
+ table-layout: fixed;
5
+ text-align: left;
6
+ width: 100%;
7
+ }
8
+
9
+ thead {
10
+ line-height: $heading-line-height;
11
+ vertical-align: bottom;
12
+ }
13
+
14
+ tbody {
15
+ vertical-align: top;
16
+ }
17
+
18
+ tr {
19
+ border-bottom: $base-border;
20
+ }
21
+
22
+ th {
23
+ font-weight: 600;
24
+ }
25
+
26
+ th,
27
+ td {
28
+ padding: $small-spacing $small-spacing $small-spacing 0;
29
+ }
@@ -0,0 +1,45 @@
1
+ html {
2
+ color: $base-font-color;
3
+ font-family: $base-font-family;
4
+ font-size: 100%;
5
+ line-height: $base-line-height;
6
+ }
7
+
8
+ h1,
9
+ h2,
10
+ h3,
11
+ h4,
12
+ h5,
13
+ h6 {
14
+ font-family: $heading-font-family;
15
+ font-size: modular-scale(1);
16
+ line-height: $heading-line-height;
17
+ margin: 0 0 $small-spacing;
18
+ }
19
+
20
+ p {
21
+ margin: 0 0 $small-spacing;
22
+ }
23
+
24
+ a {
25
+ color: $action-color;
26
+ text-decoration-skip: ink;
27
+ transition: color $base-duration $base-timing;
28
+
29
+ &:hover {
30
+ color: shade($action-color, 25%);
31
+ }
32
+
33
+ &:focus {
34
+ outline: $focus-outline;
35
+ outline-offset: $focus-outline-offset;
36
+ }
37
+ }
38
+
39
+ hr {
40
+ border-bottom: $base-border;
41
+ border-left: 0;
42
+ border-right: 0;
43
+ border-top: 0;
44
+ margin: $base-spacing 0;
45
+ }