jekyll-dark-ored 0.2.0 → 0.3.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b99292b0db7345491cae7b1d3298e0df7349846c678307167447fe77971409f1
4
- data.tar.gz: 5ac2f44fc1329b2de89f0676700f15cef4ad52f1b5fdac0d55b9b96b647d85ac
3
+ metadata.gz: a40ce64cf7d6c4f4da17e9fbf8e27e4eb58079468566a3e1f4b400b6385d42d9
4
+ data.tar.gz: f8e16f407d9e808ea2d579423de7125c7ba30d6732357b2888eb75136d834675
5
5
  SHA512:
6
- metadata.gz: ccdb292372425737b508095b28b1bc44b91494fe9e8b44352df9fde029ed102b0e3f08921d9c3abc38b7eaf6e66d255cf690804d99345c38b7a4b399cdb54419
7
- data.tar.gz: 148cffb4b8165cb4b31adf9e57c42dd058c361459ae48fde61343bf8ec96a68cd5ffee9b1de66038eddc4e781f15fc6e63679408969a09a2a903d5db643e0e72
6
+ metadata.gz: 27a8c853af044531a4d99b5a727f394c5e5eee73a79f680589af1fe3339f635e6060c0113a96d7ea7b6f37c9abf7fabec1d0e9990191c003420e6ba58c3a2815
7
+ data.tar.gz: 9f3f5f02244a6320c606e6d0707a31a5548d9015eca02cb627c1be7844e29ed3b75f42523f4b1fa399f7660c3c4f46c5c96c6edf756cdb6c04b67642737e4fa3
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A simple dark orange red theme for Jekyll.
4
4
 
5
- Responsive images, tables, iframes (for include videos of **Youtube**, **Vimeo** or similar services) and other elements thanks to mi CSS framework [MicroCSS](https://son-link.github.io/microcss/)
5
+ Responsive images, tables, iframes (for include videos of **Youtube**, **Vimeo** or similar services) and other elements thanks to my CSS framework [MicroCSS](https://son-link.github.io/microcss/)
6
6
 
7
7
  A simple pure javascript code for toggle menu and responsive tables.
8
8
 
@@ -49,7 +49,7 @@ gem "jekyll-paginator" # This line isn't necessary if you use github-pages
49
49
  Add this lines to your Jekyll site's `_config.yml`:
50
50
 
51
51
  ```yaml
52
- theme: jekyll-simple-dark
52
+ theme: jekyll-dark-ored
53
53
  plugins:
54
54
  - jekyll-paginate
55
55
  paginate: 5 # Posts per page
@@ -114,8 +114,6 @@ For use you only need add this plugin on the plugins array on **_config.yml**
114
114
  ### Icons:
115
115
  This theme include somo icons ready to use.
116
116
 
117
-
118
-
119
117
  ## Contributing
120
118
 
121
119
  Bug reports and pull requests are welcome on [GitHub](https://github.com/son-link/jekyll-dark-ored)
@@ -65,6 +65,10 @@ body {
65
65
 
66
66
  $col_size: 100%/12;
67
67
 
68
+ @for $i from 1 to 13 {
69
+ .col-#{$i} { width: $col_size * $i; }
70
+ }
71
+
68
72
  .row {
69
73
  width: 100%;
70
74
  max-width: 1140px;
@@ -74,41 +78,42 @@ $col_size: 100%/12;
74
78
  display:table;
75
79
  clear:both;
76
80
  }
77
-
78
- @for $i from 1 to 13 {
79
- .col-#{$i} { width: $col_size * $i; float: left; }
80
- }
81
81
  }
82
82
 
83
83
  .row *[class*=col-]{
84
- padding: 5px 0;
84
+ padding: .2rem 0;
85
85
  box-sizing: border-box;
86
+ float: left;
86
87
  }
87
88
 
88
- h1 {font-size: 48px; line-height: 58px}
89
- h2 {font-size: 40px; line-height: 50px}
90
- h3 {font-size: 32px; line-height: 42px}
91
- h4 {font-size: 28px; line-height: 38px}
92
- h5 {font-size: 24px; line-height: 34px}
93
- h6 {font-size: 20px; line-height: 30px}
89
+ h1 {font-size: 3rem;}
90
+ h2 {font-size: 2.5rem;}
91
+ h3 {font-size: 2rem;}
92
+ h4 {font-size: 1.75rem;}
93
+ h5 {font-size: 1.5rem;}
94
+ h6 {font-size: 1.25rem;}
95
+ h1, h2, h3, h4, h5, h6 {
96
+ line-height: 1.2;
97
+ }
94
98
 
95
99
  /* Forms and buttons */
96
100
 
97
- input,
101
+ input:not([type=submit]):not([type=reset]):not([type=button]):not([type=checkbox]):not([type=radio]),
98
102
  optgroup,
99
103
  select,
100
104
  textarea {
101
105
  font-family: inherit;
102
106
  font-size: 100%;
103
107
  line-height: 150%;
104
- margin: 0;
105
108
  -webkit-appearance: none;
106
109
  background: #FFFFFF;
107
- padding: 0 3px;
110
+ padding: .2rem .4rem;
108
111
  color: $black;
109
112
  border: 1px solid $gray;
110
- border-radius: 3px;
113
+ border-radius: .2rem;
111
114
  transition: border-color 0.2s ease;
115
+ width: 100%;
116
+ max-width: 100%;
112
117
 
113
118
  &:focus {
114
119
  border-color: $aqua;
@@ -122,6 +127,10 @@ textarea {
122
127
  }
123
128
  }
124
129
 
130
+ input:not([type=submit]):not([type=reset]), select, textarea, optgroup {
131
+ margin: .5rem 0;
132
+ }
133
+
125
134
  select{
126
135
  padding-right: 24px;
127
136
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCI+PHBhdGggZD0iTTcuNDEsOC41OEwxMiwxMy4xN0wxNi41OSw4LjU4TDE4LDEwTDEyLDE2TDYsMTBMNy40MSw4LjU4WiIgLz48L3N2Zz4=);
@@ -129,20 +138,33 @@ select{
129
138
  background-repeat: no-repeat;
130
139
  }
131
140
 
132
- /* Buttons and alerts */
141
+ label, legend {
142
+ display: block;
143
+ }
133
144
 
134
- button, a.button, .alert, *[type=submit], *[type=reset] {
145
+ /* Buttons */
146
+
147
+ button, a.button, *[type=submit], *[type=reset] {
135
148
  background-color: $white;
136
149
  border: 1px solid $gray;
137
- border-radius: 3px;
150
+ border-radius: .2rem;
138
151
  line-height: 2rem;
139
152
  color: $black;
140
- padding: 0 10px;
153
+ padding: 0 2rem;
141
154
  height: 2rem;
142
155
  display: inline-block;
156
+ font-weight: bold;
157
+ box-sizing: border-box;
158
+ font-size: 1rem;
143
159
  }
144
160
 
145
- .alert {margin: 10px 0}
161
+ /* Alerts */
162
+ .alert {
163
+ display: block;
164
+ margin: 10px 0;
165
+ padding: .5rem;
166
+ border-radius: .2rem;
167
+ }
146
168
 
147
169
  .primary, .success, .danger, .warning, .info, *:disabled{
148
170
  color: #FFFFFF;
@@ -222,7 +244,7 @@ video, audio {
222
244
 
223
245
  .navbar-title {
224
246
  font-weight: bold;
225
- font-size: 120%;
247
+ font-size: 1.2rem;
226
248
  }
227
249
 
228
250
  &.fixed {
@@ -238,6 +260,7 @@ video, audio {
238
260
  border-bottom: 0;
239
261
  a, .navbar-title {
240
262
  display: block;
263
+ padding: .2rem .5rem;
241
264
  }
242
265
  }
243
266
  }
@@ -294,8 +317,9 @@ pre {
294
317
  white-space: pre-wrap;
295
318
  }
296
319
 
297
- ul, ol, p, table, blockquote, form, blockquote, pre, .resp-iframe {
298
- margin-bottom: 2rem;
320
+ ul, ol, p, table, blockquote, form, blockquote, pre, .resp-iframe,
321
+ h1, h2, h3, h4, h5, h6, .card {
322
+ margin-bottom: 1rem;
299
323
  }
300
324
 
301
325
  /* Utilities */
@@ -323,10 +347,20 @@ ul, ol, p, table, blockquote, form, blockquote, pre, .resp-iframe {
323
347
  /* Cards */
324
348
 
325
349
  .card {
326
- width: 96%;
327
- border-radius: .3rem;
350
+ border-radius: .2rem;
328
351
  box-shadow: 1px 1px 1px rgba(0, 0, 0, .2),-1px -1px 1px rgba(0, 0, 0, .2);
329
- padding: 1rem;
352
+
353
+ .card-title, .card-body, .card-footer {
354
+ padding: .5rem;
355
+ }
356
+ .card-title {
357
+ font-size: 22px;
358
+ font-weight: bold;
359
+ }
360
+
361
+ .card-footer {
362
+ border-top: 1px solid $silver;
363
+ }
330
364
 
331
365
  p {
332
366
  margin: 0;
@@ -106,14 +106,18 @@ footer {
106
106
 
107
107
  .entry {
108
108
  .entry-title {
109
- font-size: 1.5rem;
109
+ display: block;
110
+ font-size: 2rem;
110
111
  font-weight: bold;
111
112
  }
112
113
 
113
114
  .entry-date {
114
115
  display: block;
115
116
  color: $red;
116
- margin-bottom: .5rem;
117
+ }
118
+
119
+ .entry-title, .entry-date {
120
+ margin-bottom: 1rem;
117
121
  }
118
122
 
119
123
  .entry-footer {
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-dark-ored
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alfonso Saavedra "Son Link"
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-08-30 00:00:00.000000000 Z
11
+ date: 2019-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -93,7 +93,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
93
93
  - !ruby/object:Gem::Version
94
94
  version: '0'
95
95
  requirements: []
96
- rubygems_version: 3.0.4
96
+ rubygems_version: 3.0.6
97
97
  signing_key:
98
98
  specification_version: 4
99
99
  summary: A simple dark orange red theme for Jekyll.