seiro 0.0.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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: c033257b9453ca797d2de80c9e3eeaa70e750a03
4
+ data.tar.gz: b87927cb5b6c893b4bbf3740a5807fb35d46b107
5
+ SHA512:
6
+ metadata.gz: a198c9cb9be3db5a71b425e9819d4fb3c0fcd0399e52aa8e9afcf4f53dea0158f8a7b822e9c6cc919e0f3dc3d729894ecada8548235e89e42155a1c9b9014e55
7
+ data.tar.gz: 2fc6cbf2b5720762d444f7a4257abc396bc455d1060678414f39758c154181ac2a9551c06f7c9c2ae859a345995130ff4a0da95350a494b7c4e1846d142f3f05
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Nadia Rodriguez
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,52 @@
1
+ # seiro
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`, your sass files in `_sass` and any other assets in `assets`.
4
+
5
+ To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
6
+
7
+ TODO: Delete this and the text above, and describe your gem
8
+
9
+
10
+ ## Installation
11
+
12
+ Add this line to your Jekyll site's `Gemfile`:
13
+
14
+ ```ruby
15
+ gem "seiro"
16
+ ```
17
+
18
+ And add this line to your Jekyll site's `_config.yml`:
19
+
20
+ ```yaml
21
+ theme: seiro
22
+ ```
23
+
24
+ And then execute:
25
+
26
+ $ bundle
27
+
28
+ Or install it yourself as:
29
+
30
+ $ gem install seiro
31
+
32
+ ## Usage
33
+
34
+ TODO: Write usage instructions here. Describe your available layouts, includes, sass and/or assets.
35
+
36
+ ## Contributing
37
+
38
+ 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.
39
+
40
+ ## Development
41
+
42
+ To set up your environment to develop this theme, run `bundle install`.
43
+
44
+ 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.
45
+
46
+ When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
47
+ To add a custom directory to your theme-gem, please edit the regexp in `seiro.gemspec` accordingly.
48
+
49
+ ## License
50
+
51
+ The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
52
+
@@ -0,0 +1,8 @@
1
+ <head>
2
+ <meta charset="UTF-8">
3
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
4
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
5
+ <title>{{ site.title }}</title>
6
+ <link rel="stylesheet" href="../css/seiro.css">
7
+ <link rel="stylesheet" href="../css/style.css">
8
+ </head>
@@ -0,0 +1,13 @@
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ {% include head.html %}
4
+ <body>
5
+ <div class="s-banner-fullheight" id="main-background">
6
+ <div class="s-banner-container">
7
+ <div class="s-card-grid">
8
+ {{ content }}
9
+ </div>
10
+ </div>
11
+ </div>
12
+ </body>
13
+ </html>
@@ -0,0 +1,9 @@
1
+ ---
2
+ layout: home
3
+ ---
4
+ <div class="s-blog-card">
5
+ <div class="s-card-content">
6
+ {{ content }}
7
+ </div>
8
+ </div>
9
+
@@ -0,0 +1,4 @@
1
+ @charset "utf-8"
2
+
3
+ @import "gallery.sass"
4
+ @import "card.sass"
@@ -0,0 +1,134 @@
1
+ @import "../variables/initial-variables.sass"
2
+
3
+ .s-card-grid
4
+ display: flex
5
+ flex-direction: row
6
+ justify-content: center
7
+ flex-wrap: wrap
8
+
9
+ .s-card
10
+ display: flex
11
+ flex-direction: column
12
+ max-width: 100%
13
+ width: 48vh
14
+ background-color: white
15
+ box-shadow: 2px 2px 20px $grey-light
16
+ border-radius: 3px
17
+ padding: 0
18
+ margin: 0.5rem
19
+ -webkit-transition: 0.3s ease-in-out !important
20
+ transition: 0.2s ease-in-out !important
21
+
22
+ .s-blog-card
23
+ display: flex
24
+ flex-direction: column
25
+ max-width: 100%
26
+ width: 700px
27
+ background-color: white
28
+ border-radius: 1px
29
+ padding: 0
30
+ margin: 0.5rem
31
+ -webkit-transition: 0.3s ease-in-out !important
32
+ transition: 0.2s ease-in-out !important
33
+
34
+ .s-card:hover
35
+ box-shadow: 4px 4px 20px $grey
36
+
37
+ .s-card-content
38
+ padding: 20px
39
+
40
+ img
41
+ max-width: 100%
42
+ width: 48vh
43
+ height: 30vh
44
+ border-radius: 3px 3px 0 0
45
+ margin: 0
46
+
47
+ .s-card-title
48
+ font-family: 'Noto Sans'
49
+ font-size: 1.3rem !important
50
+ margin: 0
51
+
52
+ .s-card-text
53
+ margin: 0
54
+ font-family: 'Noto Sans'
55
+ font-size: 12px
56
+
57
+ .s-profile-card
58
+ width: 48vh
59
+ min-height: 45vh
60
+ display: flex
61
+ flex-direction: column
62
+ border-radius: 10px
63
+ margin: 15px
64
+ padding: 0
65
+ box-shadow: 2px 2px 20px $grey-light
66
+ -webkit-transition: 0.3s ease-in-out !important
67
+ transition: 0.2s ease-in-out !important
68
+
69
+ .s-profile-card:hover
70
+ box-shadow: 4px 4px 20px $grey
71
+
72
+ .s-profile-card-container
73
+ display: flex
74
+ justify-content: center
75
+ width: 48vh
76
+ flex-direction: column
77
+
78
+ .s-profile-background
79
+ width: 48vh;
80
+ min-height: 22vh;
81
+ background-size: cover;
82
+ border-radius: 10px 10px 0 0;
83
+
84
+ .s-profile-picture
85
+ margin-top: -70px
86
+ display: flex
87
+ justify-content: center
88
+
89
+ .s-profile-image
90
+ width: 20vh
91
+ height: 20vh
92
+ border-radius: 100%
93
+ background-color: white
94
+ border: 3px solid white
95
+
96
+ .s-profile-media
97
+ background-color: white
98
+ border-radius: 10px
99
+
100
+ .s-profile-content
101
+ display: flex
102
+ flex-direction: column
103
+ padding: 20px
104
+ font-family: 'Montserrat'
105
+ justify-content: center
106
+ text-align: center
107
+ margin-top: -10px
108
+ background-color: white
109
+ z-index: -1
110
+ border-radius: 0 0 10px 10px
111
+ font-family: 'Montserrat'
112
+
113
+ .s-profile-title
114
+ padding: 0
115
+ margin: 0
116
+ font-weight: 300
117
+ font-size: 1.5rem
118
+
119
+ .s-profile-text
120
+ padding: 0
121
+ font-size: 0.75rem
122
+ margin: 0.5em
123
+
124
+ .s-profile-links
125
+ letter-spacing: 3px
126
+
127
+ .fa-instagram
128
+ color: #E44D55
129
+
130
+ .fa-linkedin
131
+ color: #0076B4
132
+
133
+ .fa-twitter
134
+ color: #1DA1F4
@@ -0,0 +1,57 @@
1
+ @import "../variables/initial-variables"
2
+
3
+ $gallery-display: flex !default
4
+ $gallery-direction: row !default
5
+ $gallery-wrap: wrap !default
6
+ $gallery-content: center !default
7
+ $photo-width: 300px !default
8
+ $photo-height: 250px !default
9
+ $photo-gap: 0.6rem !default
10
+ $photo-shadow: 4px 4px 30px rgb(180, 180, 180) !default
11
+ $photo-radius: 3px !default
12
+
13
+ .gallery
14
+ display: $gallery-display !important
15
+ flex-direction: $gallery-direction !important
16
+ flex-wrap: $gallery-wrap !important
17
+ justify-content: $gallery-content !important
18
+ padding: 10px
19
+
20
+ .photo
21
+ border-radius: 3px;
22
+ width: $photo-width !important
23
+ height: $photo-height !important
24
+ margin: $photo-gap !important
25
+ border-radius: $photo-radius !important
26
+
27
+ .photo1, .photo9
28
+ background: url("https://images.unsplash.com/photo-1504814532849-cff240bbc503?auto=format&fit=crop&w=1268&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
29
+ background-size: cover
30
+
31
+ .photo2, .photo10
32
+ background: url("https://images.unsplash.com/photo-1463468217891-c11f48e6310a?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
33
+ background-size: cover
34
+
35
+ .photo3, .photo11
36
+ background: url("https://images.unsplash.com/photo-1464646163800-8331cc18a357?auto=format&fit=crop&w=1346&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
37
+ background-size: cover
38
+
39
+ .photo4, .photo12
40
+ background: url("https://images.unsplash.com/photo-1480099835147-7b8f6c6f8b98?auto=format&fit=crop&w=1288&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
41
+ background-size: cover
42
+
43
+ .photo5, .photo13
44
+ background: url("https://images.unsplash.com/photo-1482531007909-192ac913980a?auto=format&fit=crop&w=1351&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
45
+ background-size: cover
46
+
47
+ .photo6, .photo14
48
+ background: url("https://images.unsplash.com/photo-1454123253751-1fe2b9e0c10d?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
49
+ background-size: cover
50
+
51
+ .photo7, .photo15
52
+ background: url("https://images.unsplash.com/photo-1500514966906-fe245eea9344?auto=format&fit=crop&w=1267&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
53
+ background-size: cover
54
+
55
+ .photo8, .photo16
56
+ background: url("https://images.unsplash.com/photo-1483560732664-64c6d784340b?auto=format&fit=crop&w=1350&q=60&ixid=dW5zcGxhc2guY29tOzs7Ozs%3D") center no-repeat
57
+ background-size: cover
@@ -0,0 +1,4 @@
1
+ @charset "utf-8"
2
+
3
+ @import "banners.sass"
4
+ @import "buttons.sass"
@@ -0,0 +1,60 @@
1
+ @import "../variables/derived-variables.sass"
2
+ @import "../variables/initial-variables.sass"
3
+
4
+ $s-banner-default: 15vh !default
5
+ $s-banner-medium: 30vh !default
6
+ $s-banner-large: 60vh !default
7
+ $s-banner-fullheight: 100vh !default
8
+ $s-banner-padding: 30px !default
9
+ $s-banner-align-items: center !default
10
+ $s-banner-display: flex !default
11
+ $s-banner-direction: column !default
12
+ $s-banner-justify: center !default
13
+
14
+ .s-gradient
15
+ background: -webkit-linear-gradient(#21D4FD, #158ba5)
16
+ color: white
17
+
18
+ .s-banner-container
19
+ display: $s-banner-display !important
20
+ flex-direction: $s-banner-direction
21
+ justify-content: center !important
22
+ width: 100% !important
23
+
24
+ .s-banner
25
+ background-color: $white
26
+ min-height: $s-banner-default
27
+ padding: $s-banner-padding
28
+ display: $s-banner-display
29
+ align-items: $s-banner-align-items
30
+
31
+ .s-banner-medium
32
+ background-color: $white
33
+ min-height: $s-banner-medium
34
+ padding: $s-banner-padding
35
+ display: $s-banner-display
36
+ align-items: $s-banner-align-items
37
+
38
+ .s-banner-large
39
+ background-color: $white
40
+ min-height: $s-banner-large
41
+ padding: $s-banner-padding
42
+ display: $s-banner-display
43
+ align-items: $s-banner-align-items
44
+
45
+ .s-banner-primary-large
46
+ background-color: $primary
47
+ min-height: $s-banner-large
48
+ padding: $s-banner-padding
49
+ display: $s-banner-display
50
+ align-items: $s-banner-align-items
51
+ color: $white
52
+
53
+ .s-banner-fullheight
54
+ background-color: $white
55
+ min-height: $s-banner-fullheight
56
+ display: $s-banner-display
57
+ align-items: $s-banner-align-items
58
+ justify-content: $s-banner-justify
59
+ flex-direction: $s-banner-direction
60
+ padding: $s-banner-padding
@@ -0,0 +1,224 @@
1
+ @import "../variables/derived-variables.sass"
2
+ @import "../variables/initial-variables.sass"
3
+
4
+ $button-width: 80px !default
5
+ $button-height: 40px !default
6
+ $button-width-small: $button-width - 20px !default
7
+ $button-height-small: $button-height - 10px !default
8
+ $button-width-large: $button-width + 20px !default
9
+ $button-height-large: $button-height + 20px !default
10
+ $button-radius: 3px !default
11
+ $button-padding: 5px !default
12
+ $button-margin: 2px !default
13
+ $bg-color: rgba(0, 0, 0, 0) !default
14
+
15
+ .buttons
16
+ display: flex !important
17
+ flex-direction: row !important
18
+ flex-wrap: wrap !important
19
+ justify-content: left !important
20
+ align-items: center !important
21
+
22
+ .btn-small
23
+ display: flex
24
+ align-items: center !important
25
+ justify-content: center !important
26
+ min-width: $button-width-small !important
27
+ min-height: $button-height-small !important
28
+ border-radius: $button-radius !important
29
+ padding: $button-padding !important
30
+
31
+ .btn-large
32
+ display: flex
33
+ align-items: center !important
34
+ justify-content: center !important
35
+ min-width: $button-width-large !important
36
+ min-height: $button-height-large !important
37
+ border-radius: $button-radius !important
38
+ padding: $button-padding !important
39
+
40
+ .button
41
+ display: flex
42
+ align-items: center !important
43
+ justify-content: center !important
44
+ min-width: $button-width
45
+ min-height: $button-height
46
+ border-radius: $button-radius !important
47
+ border: none !important
48
+ padding: $button-padding !important
49
+ margin: $button-margin !important
50
+ color: $black-flat
51
+ background-color: $white
52
+ -webkit-transition: 0.3s ease-in-out !important
53
+ transition: 0.3s ease-in-out !important
54
+
55
+ .button.s-default:hover
56
+ background-color: darken($default,5%) !important
57
+
58
+ .button.s-primary:hover
59
+ background-color: darken($primary,5%) !important
60
+
61
+ .button.s-danger:hover
62
+ background-color: darken($danger,5%) !important
63
+
64
+ .button.s-warning:hover
65
+ background-color: darken($warning,5%) !important
66
+
67
+ .button.s-success:hover
68
+ background-color: darken($success,5%) !important
69
+
70
+ .button.s-info:hover
71
+ background-color: darken($info,5%) !important
72
+
73
+ .button.s-purple:hover
74
+ background-color: darken($purple, 5%) !important
75
+
76
+ .outlined-button
77
+ display: flex
78
+ align-items: center !important
79
+ justify-content: center !important
80
+ min-width: $button-width
81
+ min-height: $button-height
82
+ border-radius: $button-radius !important
83
+ border: 1px solid $default !important
84
+ padding: $button-padding !important
85
+ margin: $button-margin !important
86
+ background-color: $bg-color !important
87
+ color: $default !important
88
+ -webkit-transition: 0.3s ease-in-out !important
89
+ transition: 0.3s ease-in-out !important
90
+
91
+ .outlined-button:hover
92
+ background-color: $default !important
93
+ color: $white !important
94
+
95
+ .outlined-button-white
96
+ min-width: $button-width
97
+ max-width: $button-width + 50px !important
98
+ min-height: $button-height
99
+ border-radius: $button-radius !important
100
+ border: 1px solid $white !important
101
+ padding: $button-padding !important
102
+ margin: $button-margin !important
103
+ background-color: $bg-color !important
104
+ color: $white !important
105
+ -webkit-transition: 0.3s ease-in-out !important
106
+ transition: 0.3s ease-in-out !important
107
+
108
+ .outlined-button-white:hover
109
+ background-color: $white !important
110
+ color: #21D4FD !important
111
+
112
+ .outlined-button-primary
113
+ display: flex
114
+ align-items: center !important
115
+ justify-content: center !important
116
+ min-width: $button-width
117
+ min-height: $button-height
118
+ border-radius: $button-radius !important
119
+ border: 1px solid $primary !important
120
+ padding: $button-padding !important
121
+ margin: $button-margin !important
122
+ background-color: $bg-color !important
123
+ color: $primary !important
124
+ -webkit-transition: 0.3s ease-in-out !important
125
+ transition: 0.3s ease-in-out !important
126
+
127
+ .outlined-button-primary:hover
128
+ background-color: $primary !important
129
+ color: $white !important
130
+
131
+ .outlined-button-danger
132
+ display: flex
133
+ align-items: center !important
134
+ justify-content: center !important
135
+ min-width: $button-width
136
+ min-height: $button-height
137
+ border-radius: $button-radius !important
138
+ border: 1px solid $danger !important
139
+ padding: $button-padding !important
140
+ margin: $button-margin !important
141
+ background-color: $bg-color !important
142
+ color: $danger !important
143
+ -webkit-transition: 0.3s ease-in-out !important
144
+ transition: 0.3s ease-in-out !important
145
+
146
+ .outlined-button-danger:hover
147
+ background-color: $danger !important
148
+ color: $white !important
149
+
150
+ .outlined-button-warning
151
+ display: flex
152
+ align-items: center !important
153
+ justify-content: center !important
154
+ min-width: $button-width
155
+ min-height: $button-height
156
+ border-radius: $button-radius !important
157
+ border: 1px solid $warning !important
158
+ padding: $button-padding !important
159
+ margin: $button-margin !important
160
+ background-color: $bg-color !important
161
+ color: $warning !important
162
+ -webkit-transition: 0.3s ease-in-out !important
163
+ transition: 0.3s ease-in-out !important
164
+
165
+ .outlined-button-warning:hover
166
+ background-color: $warning !important
167
+ color: $white !important
168
+
169
+ .outlined-button-success
170
+ display: flex
171
+ align-items: center !important
172
+ justify-content: center !important
173
+ min-width: $button-width
174
+ min-height: $button-height
175
+ border-radius: $button-radius !important
176
+ border: 1px solid $success !important
177
+ padding: $button-padding !important
178
+ margin: $button-margin !important
179
+ background-color: $bg-color !important
180
+ color: $success !important
181
+ -webkit-transition: 0.3s ease-in-out !important
182
+ transition: 0.3s ease-in-out !important
183
+
184
+ .outlined-button-success:hover
185
+ background-color: $success !important
186
+ color: $white !important
187
+
188
+ .outlined-button-info
189
+ display: flex
190
+ align-items: center !important
191
+ justify-content: center !important
192
+ min-width: $button-width
193
+ min-height: $button-height
194
+ border-radius: $button-radius !important
195
+ border: 1px solid $info !important
196
+ padding: $button-padding !important
197
+ margin: $button-margin !important
198
+ background-color: $bg-color !important
199
+ color: $info !important
200
+ -webkit-transition: 0.3s ease-in-out !important
201
+ transition: 0.3s ease-in-out !important
202
+
203
+ .outlined-button-info:hover
204
+ background-color: $info !important
205
+ color: $white !important
206
+
207
+ .outlined-button-purple
208
+ display: flex
209
+ align-items: center !important
210
+ justify-content: center !important
211
+ min-width: $button-width
212
+ min-height: $button-height
213
+ border-radius: $button-radius !important
214
+ border: 1px solid $purple !important
215
+ padding: $button-padding !important
216
+ margin: $button-margin !important
217
+ background-color: $bg-color !important
218
+ color: $purple !important
219
+ -webkit-transition: 0.3s ease-in-out !important
220
+ transition: 0.3s ease-in-out !important
221
+
222
+ .outlined-button-purple:hover
223
+ background-color: $purple !important
224
+ color: $white !important
@@ -0,0 +1,4 @@
1
+ @charset "utf-8"
2
+
3
+ @import "defaults.sass"
4
+ @import "typography-helpers.sass"
@@ -0,0 +1,62 @@
1
+ @import "typography-helpers.sass"
2
+ @import "../variables/derived-variables.sass"
3
+
4
+ //default html margin
5
+ html, body
6
+ margin: 0 !important
7
+
8
+ hr
9
+ width: 55vh
10
+ margin: 0 auto
11
+ border: 1px solid #e1e1e1
12
+
13
+ //default colors, just apply color class to get the color
14
+ .s-primary
15
+ background-color: $primary !important
16
+ color: $white !important
17
+
18
+ .s-info
19
+ background-color: $info !important
20
+ color: $white !important
21
+
22
+ .s-success
23
+ background-color: $success !important
24
+ color: $white !important
25
+
26
+ .s-warning
27
+ background-color: $warning !important
28
+ color: $white !important
29
+
30
+ .s-danger
31
+ background-color: $danger !important
32
+ color: $white !important
33
+
34
+ .s-default
35
+ background-color: $default !important
36
+ color: $black-flat
37
+
38
+ .s-light
39
+ background-color: $light !important
40
+
41
+ .s-grey
42
+ background-color: $silver !important
43
+ color: $white !important
44
+
45
+ .s-purple
46
+ background-color: $purple !important
47
+ color: $white !important
48
+
49
+ .s-orange
50
+ background-color: $orange !important
51
+ color: $white !important
52
+
53
+ .s-black
54
+ background-color: $black-flat !important
55
+ color: $white !important
56
+
57
+ .container
58
+ max-width: $fullhd !important
59
+ margin: 0 auto !important
60
+ height: auto !important
61
+ padding: 30px !important
62
+
@@ -0,0 +1,84 @@
1
+ @import "../variables/initial-variables"
2
+
3
+ $default-text-color: $black !default
4
+ $text-is-white: $white !default
5
+ $s-title-weight: $weight-semibold !default
6
+ $s-title-size: $size-4 !default
7
+ $subtitle-weight: $weight-light !default
8
+ $subtitle-size: $size-6 !default
9
+
10
+ //default color and font-family
11
+ html, body, h1, h2, h3, h4, h5, h6, a, button, li, ul
12
+ font-family: 'Noto Sans'
13
+
14
+ //default header sizes
15
+ h1
16
+ font-size: $size-1
17
+ padding: 0
18
+
19
+ h2
20
+ font-size: $size-2
21
+ padding: 0
22
+
23
+ h3
24
+ font-size: $size-3
25
+ padding: 0
26
+
27
+ h4
28
+ font-size: $size-4
29
+ padding: 0
30
+
31
+ h5
32
+ font-size: $size-5
33
+ padding: 0
34
+
35
+ h6
36
+ font-size: $size-6
37
+ padding: 0
38
+
39
+ //align text
40
+ .text-is-centered
41
+ text-align: center !important
42
+
43
+ .text-is-right
44
+ text-align: right !important
45
+
46
+ .text-is-left
47
+ text-align: left !important
48
+
49
+ //text colors
50
+ .text-is-white
51
+ color: $text-is-white !important
52
+
53
+ .text-is-grey
54
+ color: $grey !important
55
+
56
+ //change text sizes with these
57
+ .size-is-1
58
+ font-size: $size-1 !important
59
+
60
+ .size-is-2
61
+ font-size: $size-2 !important
62
+
63
+ .size-is-3
64
+ font-size: $size-3 !important
65
+
66
+ .size-is-4
67
+ font-size: $size-4 !important
68
+
69
+ .size-is-5
70
+ font-size: $size-5 !important
71
+
72
+ .size-is-6
73
+ font-size: $size-6 !important
74
+
75
+ .size-is-7
76
+ font-size: $size-7 !important
77
+
78
+ .s-subtitle
79
+ font-size: $subtitle-size
80
+ font-weight: $subtitle-weight
81
+
82
+ .s-title
83
+ font-size: $size-4
84
+ font-weight: $s-title-weight
data/_sass/seiro.sass ADDED
@@ -0,0 +1,6 @@
1
+ @charset "utf-8"
2
+
3
+ @import "variables/_all"
4
+ @import "modifiers/_all"
5
+ @import "elements/_all"
6
+ @import "components/_all"
@@ -0,0 +1,5 @@
1
+ @charset "utf-8"
2
+
3
+ @import "initial-variables.sass"
4
+ @import "derived-variables.sass"
5
+ @import "element-variables.sass"
@@ -0,0 +1,17 @@
1
+ //general colors
2
+ @import "initial-variables.sass"
3
+
4
+ $primary: $light-blue !default
5
+ $link: $cyan !default
6
+ $info: $blue !default
7
+ $success: $green !default
8
+ $warning: $yellow !default
9
+ $danger: $red !default
10
+ $light: $white-flat !default
11
+ $default: $grey-lighter !default
12
+ $silver: $grey-light !default
13
+ $white: $white !default
14
+
15
+ $background: $white-flat !default
16
+ $border: $grey-lighter !default
17
+ $widescreen-container: $widescreen !default
@@ -0,0 +1,10 @@
1
+ @import "initial-variables.sass"
2
+
3
+ article
4
+ margin-bottom: 10px !important
5
+
6
+ h1, h2, h3, h4, h5, h6
7
+ padding: 0
8
+ margin: 0
9
+
10
+
@@ -0,0 +1,46 @@
1
+ //default color variables
2
+
3
+ $black: #000000 !default
4
+ $black-flat: #212529 !default
5
+ $grey-darker: #7f8c8d !default
6
+ $grey-dark: #95A5A6 !default
7
+ $grey: #c3c3c3 !default
8
+ $grey-light: #bdc3c7 !default
9
+ $grey-lighter: #e1e1e1 !default
10
+ $white-flat: #ecf0f1 !default
11
+ $white: #ffffff !default
12
+ $orange: #e67e22 !default
13
+ $yellow: #f1c40f !default
14
+ $green: #2ecc71 !default
15
+ $turquoise: #1abc9c !default
16
+ $cyan: #08A5A9 !default
17
+ $light-blue: #1dbce0 !default
18
+ $blue: #2980b9 !default
19
+ $purple: #9b59b6 !default
20
+ $red: #cd2029 !default
21
+ $box-shadow: 0px 0px 5px $grey-light !default
22
+
23
+ //typography variables
24
+
25
+ $render-mode: optimizeLegibility !default
26
+ $size-1: 3.5rem !default
27
+ $size-2: 3rem !default
28
+ $size-3: 2.5rem !default
29
+ $size-4: 2rem !default
30
+ $size-5: 1.5rem !default
31
+ $size-6: 1rem !default
32
+ $size-7: 0.75rem !default
33
+
34
+ $weight-light: 300 !default
35
+ $weight-normal: 400 !default
36
+ $weight-medium: 500 !default
37
+ $weight-semibold: 600 !default
38
+ $weight-bold: 700 !default
39
+
40
+ //Responsiveness
41
+ //Breakpoints
42
+
43
+ $tablet: 769px !default
44
+ $desktop: 960px !default
45
+ $widescreen: 1152px !default
46
+ $fullhd: 1344px !default
metadata ADDED
@@ -0,0 +1,105 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: seiro
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Nadia Rodriguez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-12-08 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.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.6'
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.12'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.12'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description:
56
+ email:
57
+ - nadsr2@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/head.html
65
+ - _layouts/home.html
66
+ - _layouts/post.html
67
+ - _sass/components/_all.sass
68
+ - _sass/components/card.sass
69
+ - _sass/components/gallery.sass
70
+ - _sass/elements/_all.sass
71
+ - _sass/elements/banners.sass
72
+ - _sass/elements/buttons.sass
73
+ - _sass/modifiers/_all.sass
74
+ - _sass/modifiers/defaults.sass
75
+ - _sass/modifiers/typography-helpers.sass
76
+ - _sass/seiro.sass
77
+ - _sass/variables/_all.sass
78
+ - _sass/variables/derived-variables.sass
79
+ - _sass/variables/element-variables.sass
80
+ - _sass/variables/initial-variables.sass
81
+ homepage: https://github.com/nadsr2/seiro-jekyll-theme
82
+ licenses:
83
+ - MIT
84
+ metadata: {}
85
+ post_install_message:
86
+ rdoc_options: []
87
+ require_paths:
88
+ - lib
89
+ required_ruby_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ required_rubygems_version: !ruby/object:Gem::Requirement
95
+ requirements:
96
+ - - ">="
97
+ - !ruby/object:Gem::Version
98
+ version: '0'
99
+ requirements: []
100
+ rubyforge_project:
101
+ rubygems_version: 2.6.14
102
+ signing_key:
103
+ specification_version: 4
104
+ summary: Seiro Jekyll theme using Seiro CSS styling.
105
+ test_files: []