ultra-minimalista 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5800c98db5099c45e058503f75489513df6bd151
4
+ data.tar.gz: e4ad33ec44ecb0f01fe28e7fa1e0dac310f7535b
5
+ SHA512:
6
+ metadata.gz: a956a29aab100bcb6b702d5bc101258468467a5430032cec6fc68d30afe841cedf2faeb84097062d170739491dcca0c6a1689ca6e07efbdadd5a2e46712bafe2
7
+ data.tar.gz: dda55b4e7df9b74ccfe09d1da26fc88e27143b197d0b9691fdcabed12302c1a77105e3726525797a6abe2ba4c4e82fd7daf87d23e07b273f63e3710887f5c189
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Brayan
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
+ # ultra-minimalista
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 "ultra-minimalista"
13
+ ```
14
+
15
+ And add this line to your Jekyll site's `_config.yml`:
16
+
17
+ ```yaml
18
+ theme: ultra-minimalista
19
+ ```
20
+
21
+ And then execute:
22
+
23
+ $ bundle
24
+
25
+ Or install it yourself as:
26
+
27
+ $ gem install ultra-minimalista
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](http://opensource.org/licenses/MIT).
48
+
@@ -0,0 +1,5 @@
1
+ <footer class="container">
2
+ <section class="row">
3
+ <p class="center-text"> <a href="https://brxyxncorp.github.io">Creado por Brayan López</a></p>
4
+ </section>
5
+ </footer>
@@ -0,0 +1,26 @@
1
+ <head>
2
+ <meta charset="utf-8">
3
+ <title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
4
+
5
+ <!-- StyleSheets -->
6
+ <link href="/assets/flexbox.css" rel="stylesheet">
7
+ <link href="/assets/styles.css" rel="stylesheet">
8
+ <!-- Hazlo Responsive | Make it responsive -->
9
+ <meta name="viewport" content="width=device-width, initial-scale=1">
10
+ <!-- SEO -->
11
+ <meta name="description" content="{{ page.excerpt | default: site.description | strip_html | normalize_whitespace | truncate: 160 | escape }}">
12
+
13
+ <!-- GoogleFonts -->
14
+ <link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700" media="all">
15
+
16
+ <!-- JQuery 3.1.1 >
17
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script-->
18
+
19
+ <!-- Otra configuración | Other config -->
20
+ <meta http-equiv="X-UA-Compatible" content="IE=edge">
21
+ <link rel="canonical" href="{{ page.url | replace:'index.html','' | absolute_url }}">
22
+ <!-- Only Personal Setting
23
+ {% if jekyll.environment == 'production' and site.google_analytics %}
24
+ {% include google-analytics.html %}
25
+ {% endif %}-->
26
+ </head>
@@ -0,0 +1,11 @@
1
+ <header class="container">
2
+ <ul class="row">
3
+ {% for my_page in site.pages %}
4
+ {% if my_page.title %}
5
+ <li class="cols"><a href="{{my_page.url | relative_url}}">{{my_page.title}}</a></li>
6
+ {% endif %}
7
+ {% endfor %}
8
+ </ul>
9
+ </header>
10
+
11
+
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "es" }}">
3
+ {% include head.html %}
4
+
5
+ <body>
6
+ {% include header.html %}
7
+
8
+ <div class="container">
9
+ {{content}} <!--Aquí se incluye el contenido de las otras páginas-->
10
+ </div>
11
+
12
+ {% include footer.html%}
13
+ </body>
14
+ </html>
15
+
@@ -0,0 +1,21 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <div class="row">
5
+ <h1 class="col-12 page-heading">{{page.title}}</h1>
6
+ <p class="col-12 text-center">{{ site.time | date_to_long_string }}</p>
7
+ </div>
8
+ <div class="row">
9
+ <ul class="col-12 posts">
10
+ {% for post in site.posts %}
11
+ <li class="post text-justify">
12
+ <a href="{{ post.url }}"><h2>{{ post.title }}</h2></a>
13
+ <span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
14
+ {{ post.excerpt }}
15
+ </li>
16
+ {% endfor %}
17
+ </ul>
18
+ </div>
19
+ <h2>
20
+ <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
21
+ </h2>
@@ -0,0 +1,4 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ {{content}}
@@ -0,0 +1,22 @@
1
+ ---
2
+ layout: default
3
+ author: Brayan López
4
+ ---
5
+ <div class="row post" itemscope itemtype="http://schema.org/BlogPosting">
6
+ <header class="col-12 post-header">
7
+ <h1 class="post-title" itemprop="name headline">{{ page.title }}</h1>
8
+ <p class="post-meta">
9
+ <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time>
10
+ {% if page.author %} •
11
+ <span itemprop="author" itemscope itemtype="http://schema.org/Person">
12
+ <span itemprop="name"><a href="">{{ page.author }}</a></span>
13
+ </span>{% endif %}
14
+ </p>
15
+ </header>
16
+ <article class="post-content" itemprop="articleBody">
17
+ {{ content }}
18
+ </article>
19
+ {% if site.disqus.shortname %}
20
+ {% include disqus_comments.html %}
21
+ {% endif %}
22
+ </div>
@@ -0,0 +1,25 @@
1
+ <!--DOCTYPE html>
2
+ <html lang="{{ page.lang | default: site.lang | default: "en" }}">
3
+
4
+ {% include head.html %}
5
+
6
+ <body>
7
+
8
+ {% include header.html %}
9
+
10
+ <main class="page-content" aria-label="Content">
11
+ <div class="wrapper">
12
+ {{ content }}
13
+ </div>
14
+ </main>
15
+
16
+ {% include footer.html %}
17
+
18
+ </body>
19
+
20
+ {% for my_page in site.pages %}
21
+ {% if my_page.title %}
22
+ <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
23
+ {% endif %}
24
+ {% endfor %}
25
+ </html-->
@@ -0,0 +1,255 @@
1
+ .container{
2
+ width: 90%;
3
+ margin: 0 auto;
4
+ padding: 0 2rem;
5
+ margin-top: 15px;
6
+ -webkit-flex-direction: column;
7
+ -ms-flex-direction: column;
8
+ -webkit-box-orient: vertical;
9
+ -webkit-box-direction: normal;
10
+ flex-direction: column;
11
+ text-align: justify;
12
+ }
13
+
14
+ .row{
15
+ width: 100%;
16
+ max-width: 100%;
17
+ padding: 0 0px;
18
+ display: -webkit-flex;
19
+ display: -ms-flexbox;
20
+ display: -webkit-box;
21
+ display: flex;
22
+ -webkit-flex: 0 0 auto;
23
+ -ms-flex: 0 0 auto;
24
+ -webkit-box-flex: 0;
25
+ flex: 0 0 auto;
26
+ -webkit-flex-direction: row;
27
+ -ms-flex-direction: row;
28
+ -webkit-box-orient: horizontal;
29
+ -webkit-box-direction: normal;
30
+ flex-direction: row;
31
+ -webkit-flex-wrap: wrap;
32
+ -ms-flex-wrap: wrap;
33
+ flex-wrap: wrap;
34
+ }
35
+
36
+ .col{
37
+ width: 100%;
38
+ max-width: 100%;
39
+ padding: 0 10px;
40
+ display: -webkit-flex;
41
+ display: -ms-flexbox;
42
+ display: -webkit-box;
43
+ display: flex;
44
+ -webkit-flex: 0 0 auto;
45
+ -ms-flex: 0 0 auto;
46
+ -webkit-box-flex: 0;
47
+ flex: 0 0 auto;
48
+ -webkit-flex-direction: column;
49
+ -ms-flex-direction: column;
50
+ -webkit-box-orient: vertical;
51
+ -webkit-box-direction: normal;
52
+ flex-direction: column;
53
+ -webkit-flex-wrap: wrap;
54
+ -ms-flex-wrap: wrap;
55
+ flex-wrap: wrap;
56
+ }
57
+
58
+ .row.reverse {
59
+ -webkit-flex-direction: row-reverse;
60
+ -ms-flex-direction: row-reverse;
61
+ -webkit-box-orient: horizontal;
62
+ -webkit-box-direction: reverse;
63
+ flex-direction: row-reverse;
64
+ }
65
+
66
+ .col.reverse {
67
+ -webkit-flex-direction: column-reverse;
68
+ -ms-flex-direction: column-reverse;
69
+ -webkit-box-orient: vertical;
70
+ -webkit-box-direction: reverse;
71
+ flex-direction: column-reverse;
72
+ }
73
+
74
+ .cols {
75
+ box-sizing: border-box;
76
+ flex: 0 0 auto;
77
+ padding-right: var(--half-gutter-width);
78
+ padding-left: var(--half-gutter-width);
79
+
80
+ flex-grow: 1;
81
+ flex-basis: 0;
82
+ max-width: 100%;
83
+ text-align: center;
84
+ }
85
+
86
+ [class*="col-"]{
87
+ margin: 0 auto;
88
+ -webkit-flex: 0 0 auto;
89
+ -ms-flex: 0 0 auto;
90
+ -webkit-box-flex: 0;
91
+ flex: 0 0 auto;
92
+ text-align: center;
93
+ }
94
+
95
+ .col-1{
96
+ width: 8.333%;
97
+ max-width: 8.333%;
98
+ -webkit-flex-basis: 8.333%;
99
+ flex-basis: 8.333%;
100
+ }
101
+
102
+ .col-2{
103
+ width: 16.667%;
104
+ max-width: 16.667%;
105
+ -webkit-flex-basis: 16.667%;
106
+ flex-basis: 16.667%;
107
+ }
108
+
109
+ .col-3{
110
+ width: 25%;
111
+ max-width: 25%;
112
+ -webkit-flex-basis: 25%;
113
+ flex-basis: 25%;
114
+ }
115
+
116
+ .col-4{
117
+ width: 33.333%;
118
+ max-width: 33.333%;
119
+ -webkit-flex-basis: 33.333%;
120
+ flex-basis: 33.333%;
121
+ }
122
+
123
+ .col-5{
124
+ width: 41.667%;
125
+ max-width: 41.667%;
126
+ -webkit-flex-basis: 41.667%;
127
+ flex-basis: 41.667%;
128
+ }
129
+
130
+ .col-6{
131
+ width: 50%;
132
+ max-width: 50%;
133
+ -webkit-flex-basis: 50%;
134
+ flex-basis: 50%;
135
+ }
136
+
137
+ .col-7{
138
+ width: 58.333
139
+ max-width: 58.333%;
140
+ -webkit-flex-basis: 58.333%;
141
+ flex-basis: 58.333%;
142
+ }
143
+
144
+ .col-8{
145
+ width: 66.667%;
146
+ max-width: 66.667%;
147
+ -webkit-flex-basis: 66.667%;
148
+ flex-basis: 66.667%;
149
+ }
150
+
151
+ .col-9{
152
+ width: 75%;
153
+ max-width: 75%;
154
+ -webkit-flex-basis: 75%;
155
+ flex-basis: 75%;
156
+ }
157
+
158
+ .col-10{
159
+ width: 83.333%;
160
+ max-width: 83.333%;
161
+ -webkit-flex-basis: 83.333%;
162
+ flex-basis: 83.333%;
163
+ }
164
+
165
+ .col-11{
166
+ width: 91.667%;
167
+ max-width: 91.667%;
168
+ -webkit-flex-basis: 91.667%;
169
+ flex-basis: 91.667%;
170
+ }
171
+
172
+ .col-12{
173
+ width: 100%;
174
+ max-width: 100%;
175
+ -webkit-flex-basis: 100%;
176
+ flex-basis: 100%;
177
+ }
178
+
179
+ @media screen and (max-width: 480px){
180
+ .container{
181
+ width: 100%;
182
+ margin: 0 auto;
183
+ padding: 0 0rem;
184
+ margin-top: 15px;
185
+ -webkit-flex-direction: column;
186
+ -ms-flex-direction: column;
187
+ -webkit-box-orient: vertical;
188
+ -webkit-box-direction: normal;
189
+ flex-direction: column;
190
+ }
191
+
192
+ [class*="col-"]{
193
+ margin: 0 auto;
194
+ -webkit-flex: 0 0 auto;
195
+ -ms-flex: 0 0 auto;
196
+ -webkit-box-flex: 0;
197
+ flex: 0 0 auto;
198
+ padding: 0 1em;
199
+ text-align: justify;
200
+ width: 100%;
201
+ max-width: 100%;
202
+ -webkit-flex-basis: 100%;
203
+ flex-basis: 100%;
204
+ position: relative;
205
+ }
206
+ }
207
+
208
+ /* Tablet and desktop sizes*/
209
+ @media screen and (min-width: 481px){
210
+
211
+ }
212
+
213
+ /* Tablet sizes */
214
+ @media screen and (min-width: 481px) and (max-width: 1024px){
215
+ body{
216
+ }
217
+
218
+ .container{
219
+ width: 95%;
220
+ margin: 0 auto;
221
+ padding: 0 0rem;
222
+ margin-top: 15px;
223
+ -webkit-flex-direction: column;
224
+ -ms-flex-direction: column;
225
+ -webkit-box-orient: vertical;
226
+ -webkit-box-direction: normal;
227
+ flex-direction: column;
228
+ }
229
+
230
+ .tablet-hidden, .phone-display, .desktop-display{
231
+ display: none!important;
232
+ }
233
+
234
+ }
235
+
236
+ /* Estilos para Desktops y largest screens */
237
+ @media screen and (min-width: 1025px){
238
+ body{
239
+ }
240
+
241
+ .container{
242
+ width: 80%
243
+ margin: 0;
244
+ padding: 0 20px;
245
+ -webkit-flex-direction: column;
246
+ -ms-flex-direction: column;
247
+ -webkit-box-orient: vertical;
248
+ -webkit-box-direction: normal;
249
+ flex-direction: column;
250
+ }
251
+
252
+ .desktop-hidden, .phone-display, .tablet-display{
253
+ display: none!important;
254
+ }
255
+ }
data/assets/styles.css ADDED
@@ -0,0 +1,257 @@
1
+ html{
2
+ width: 100%;
3
+ margin: 0 auto;
4
+ min-height: 100%;
5
+ background: #f5f5f5;
6
+ background: -webkit-linear-gradient(left, #00CB84, #00DDFF);
7
+ background: -moz-linear-gradient(left, #00CB84, #00DDFF);
8
+ background: -o-linear-gradient(left, red, yellow);
9
+ background: linear-gradient(left, red, yellow);
10
+ }
11
+ body{
12
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
13
+ font-weight: 400;
14
+ font-size: 20px;
15
+ color: #111;
16
+ width: 80%;
17
+ margin: 0 auto;
18
+ padding: 50px;
19
+ }
20
+
21
+ h1, h2, h3, h4, h5, h6, article h1{font-size: all!important; font-weight: 700;}
22
+
23
+ a{
24
+ text-decoration: none;
25
+ color: #fff;
26
+ }
27
+
28
+ ul.nav-items{
29
+ position: relative;
30
+ }
31
+ li.nav-item{
32
+ font-size: 20pt;
33
+ float: left;
34
+ list-style: none;
35
+ }
36
+ li.nav-item{
37
+ margin-right: 10px;
38
+ }
39
+ ul.posts, li.post{
40
+ list-style: none;
41
+ padding: 0; margin: 0;
42
+ }
43
+ a.col-md li, ul.row{
44
+ list-style: none;
45
+ margin: 0;
46
+ padding: 0;
47
+ }
48
+
49
+ hr{
50
+ display: block;
51
+ height: 2px;
52
+ border: 0;
53
+ background-color: #DBDBEB;
54
+ }
55
+
56
+ /**
57
+ * Posts Settings
58
+ */
59
+ .page-heading, .post-title{text-transform: uppercase;}
60
+
61
+ /**
62
+ * Text Rendering
63
+ */
64
+ *{text-rendering: optimizeLegibility;}
65
+ .text-justify{text-align: justify;}
66
+ .text-center{text-align: center;}
67
+ .text-right{text-align: right;}
68
+ .text-left{text-align: left;}
69
+ /**
70
+ * Figures
71
+ */
72
+ figure {
73
+ margin: 0 40px;
74
+ border: 4px solid #3C3C3C;
75
+ border-radius: 5px;
76
+ overflow: auto;
77
+ position: relative;
78
+ }
79
+ figure > img {
80
+ display: block; }
81
+
82
+ figcaption {
83
+ font-size: 14px; }
84
+
85
+ /**
86
+ * Blockquotes
87
+ */
88
+ blockquote {
89
+ color: #828282;
90
+ border-left: 4px solid #e8e8e8;
91
+ padding-left: 15px;
92
+ font-size: 18px;
93
+ letter-spacing: -1px;
94
+ font-style: italic; }
95
+ blockquote > :last-child {
96
+ margin-bottom: 0; }
97
+ /**
98
+ * Code formatting
99
+ */
100
+ pre,
101
+ code {
102
+ font-size: 20px;
103
+ border: 1px solid #e8e8e8;
104
+ border-radius: 5px;
105
+ background-color: #e6e6e6;}
106
+
107
+ code {
108
+ padding: 1px 5px; }
109
+
110
+ pre {
111
+ padding: 8px 12px;
112
+ overflow-x: auto;
113
+ margin: 0; }
114
+ pre > code {
115
+ border: 0;
116
+ padding-right: 0;
117
+ padding-left: 0; }
118
+ /**
119
+ * Syntax highlighting styles
120
+ */
121
+ .highlight {
122
+ background: #272822; }
123
+ .highlighter-rouge .highlight {
124
+ background: #eef; }
125
+ .highlight .c {
126
+ color: #998;
127
+ font-style: italic; }
128
+ .highlight .err {
129
+ color: #a61717;
130
+ background-color: #e3d2d2; }
131
+ .highlight .k {
132
+ font-weight: bold; }
133
+ .highlight .o {
134
+ font-weight: bold; }
135
+ .highlight .cm {
136
+ color: #998;
137
+ font-style: italic; }
138
+ .highlight .cp {
139
+ color: #999;
140
+ font-weight: bold; }
141
+ .highlight .c1 {
142
+ color: #998;
143
+ font-style: italic; }
144
+ .highlight .cs {
145
+ color: #999;
146
+ font-weight: bold;
147
+ font-style: italic; }
148
+ .highlight .gd {
149
+ color: #000;
150
+ background-color: #fdd; }
151
+ .highlight .gd .x {
152
+ color: #000;
153
+ background-color: #faa; }
154
+ .highlight .ge {
155
+ font-style: italic; }
156
+ .highlight .gr {
157
+ color: #a00; }
158
+ .highlight .gh {
159
+ color: #999; }
160
+ .highlight .gi {
161
+ color: #000;
162
+ background-color: #dfd; }
163
+ .highlight .gi .x {
164
+ color: #000;
165
+ background-color: #afa; }
166
+ .highlight .go {
167
+ color: #888; }
168
+ .highlight .gp {
169
+ color: #555; }
170
+ .highlight .gs {
171
+ font-weight: bold; }
172
+ .highlight .gu {
173
+ color: #aaa; }
174
+ .highlight .gt {
175
+ color: #a00; }
176
+ .highlight .kc {
177
+ font-weight: bold; }
178
+ .highlight .kd {
179
+ font-weight: bold; }
180
+ .highlight .kp {
181
+ font-weight: bold; }
182
+ .highlight .kr {
183
+ font-weight: bold; }
184
+ .highlight .kt {
185
+ color: #458;
186
+ font-weight: bold; }
187
+ .highlight .m {
188
+ color: #099; }
189
+ .highlight .s {
190
+ color: #d14; }
191
+ .highlight .na {
192
+ color: #008080; }
193
+ .highlight .nb {
194
+ color: #0086B3; }
195
+ .highlight .nc {
196
+ color: #458;
197
+ font-weight: bold; }
198
+ .highlight .no {
199
+ color: #008080; }
200
+ .highlight .ni {
201
+ color: #800080; }
202
+ .highlight .ne {
203
+ color: #900;
204
+ font-weight: bold; }
205
+ .highlight .nf {
206
+ color: #900;
207
+ font-weight: bold; }
208
+ .highlight .nn {
209
+ color: #555; }
210
+ .highlight .nt {
211
+ color: #000080; }
212
+ .highlight .nv {
213
+ color: #008080; }
214
+ .highlight .ow {
215
+ font-weight: bold; }
216
+ .highlight .w {
217
+ color: #bbb; }
218
+ .highlight .mf {
219
+ color: #099; }
220
+ .highlight .mh {
221
+ color: #099; }
222
+ .highlight .mi {
223
+ color: #099; }
224
+ .highlight .mo {
225
+ color: #099; }
226
+ .highlight .sb {
227
+ color: #d14; }
228
+ .highlight .sc {
229
+ color: #d14; }
230
+ .highlight .sd {
231
+ color: #d14; }
232
+ .highlight .s2 {
233
+ color: #d14; }
234
+ .highlight .se {
235
+ color: #d14; }
236
+ .highlight .sh {
237
+ color: #d14; }
238
+ .highlight .si {
239
+ color: #d14; }
240
+ .highlight .sx {
241
+ color: #d14; }
242
+ .highlight .sr {
243
+ color: #009926; }
244
+ .highlight .s1 {
245
+ color: #d14; }
246
+ .highlight .ss {
247
+ color: #990073; }
248
+ .highlight .bp {
249
+ color: #999; }
250
+ .highlight .vc {
251
+ color: #008080; }
252
+ .highlight .vg {
253
+ color: #008080; }
254
+ .highlight .vi {
255
+ color: #008080; }
256
+ .highlight .il {
257
+ color: #099; }
metadata ADDED
@@ -0,0 +1,98 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ultra-minimalista
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Brayan López
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2016-12-25 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.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '3.3'
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
+ - brxyxn.corp@live.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - LICENSE.txt
63
+ - README.md
64
+ - _includes/footer.html
65
+ - _includes/head.html
66
+ - _includes/header.html
67
+ - _layouts/default.html
68
+ - _layouts/home.html
69
+ - _layouts/page.html
70
+ - _layouts/post.html
71
+ - _layouts/project.html
72
+ - assets/flexbox.css
73
+ - assets/styles.css
74
+ homepage: https://brxyxncorp.github.io/ultra-minimalista
75
+ licenses:
76
+ - MIT
77
+ metadata: {}
78
+ post_install_message:
79
+ rdoc_options: []
80
+ require_paths:
81
+ - lib
82
+ required_ruby_version: !ruby/object:Gem::Requirement
83
+ requirements:
84
+ - - ">="
85
+ - !ruby/object:Gem::Version
86
+ version: '0'
87
+ required_rubygems_version: !ruby/object:Gem::Requirement
88
+ requirements:
89
+ - - ">="
90
+ - !ruby/object:Gem::Version
91
+ version: '0'
92
+ requirements: []
93
+ rubyforge_project:
94
+ rubygems_version: 2.6.8
95
+ signing_key:
96
+ specification_version: 4
97
+ summary: Theme ultra-minimalista for blogs and tutorials.
98
+ test_files: []