bulma-clean-theme 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (66) hide show
  1. checksums.yaml +4 -4
  2. data/_includes/head.html +1 -1
  3. data/_includes/header.html +3 -3
  4. data/_includes/latest-posts.html +2 -2
  5. data/_includes/pagination.html +2 -2
  6. data/_layouts/blog.html +2 -2
  7. data/_layouts/default.html +1 -1
  8. data/_sass/_main.scss +7 -0
  9. data/assets/css/app.scss +2 -8
  10. data/node_modules/.yarn-integrity +1 -0
  11. data/node_modules/bulma/CHANGELOG.md +1135 -0
  12. data/node_modules/bulma/LICENSE +21 -0
  13. data/node_modules/bulma/README.md +112 -0
  14. data/node_modules/bulma/bulma.sass +8 -0
  15. data/node_modules/bulma/css/bulma.css +10289 -0
  16. data/node_modules/bulma/css/bulma.css.map +1 -0
  17. data/node_modules/bulma/css/bulma.min.css +1 -0
  18. data/node_modules/bulma/package.json +48 -0
  19. data/node_modules/bulma/sass/.DS_Store +0 -0
  20. data/node_modules/bulma/sass/base/_all.sass +5 -0
  21. data/node_modules/bulma/sass/base/generic.sass +127 -0
  22. data/node_modules/bulma/sass/base/helpers.sass +261 -0
  23. data/node_modules/bulma/sass/base/minireset.sass +79 -0
  24. data/node_modules/bulma/sass/components/_all.sass +15 -0
  25. data/node_modules/bulma/sass/components/breadcrumb.sass +75 -0
  26. data/node_modules/bulma/sass/components/card.sass +74 -0
  27. data/node_modules/bulma/sass/components/dropdown.sass +77 -0
  28. data/node_modules/bulma/sass/components/level.sass +75 -0
  29. data/node_modules/bulma/sass/components/list.sass +39 -0
  30. data/node_modules/bulma/sass/components/media.sass +48 -0
  31. data/node_modules/bulma/sass/components/menu.sass +50 -0
  32. data/node_modules/bulma/sass/components/message.sass +86 -0
  33. data/node_modules/bulma/sass/components/modal.sass +113 -0
  34. data/node_modules/bulma/sass/components/navbar.sass +422 -0
  35. data/node_modules/bulma/sass/components/pagination.sass +144 -0
  36. data/node_modules/bulma/sass/components/panel.sass +101 -0
  37. data/node_modules/bulma/sass/components/tabs.sass +151 -0
  38. data/node_modules/bulma/sass/elements/_all.sass +16 -0
  39. data/node_modules/bulma/sass/elements/box.sass +24 -0
  40. data/node_modules/bulma/sass/elements/button.sass +255 -0
  41. data/node_modules/bulma/sass/elements/container.sass +25 -0
  42. data/node_modules/bulma/sass/elements/content.sass +151 -0
  43. data/node_modules/bulma/sass/elements/form.sass +630 -0
  44. data/node_modules/bulma/sass/elements/icon.sass +21 -0
  45. data/node_modules/bulma/sass/elements/image.sass +68 -0
  46. data/node_modules/bulma/sass/elements/notification.sass +35 -0
  47. data/node_modules/bulma/sass/elements/other.sass +39 -0
  48. data/node_modules/bulma/sass/elements/progress.sass +40 -0
  49. data/node_modules/bulma/sass/elements/table.sass +119 -0
  50. data/node_modules/bulma/sass/elements/tag.sass +111 -0
  51. data/node_modules/bulma/sass/elements/title.sass +64 -0
  52. data/node_modules/bulma/sass/grid/_all.sass +4 -0
  53. data/node_modules/bulma/sass/grid/columns.sass +504 -0
  54. data/node_modules/bulma/sass/grid/tiles.sass +32 -0
  55. data/node_modules/bulma/sass/layout/_all.sass +5 -0
  56. data/node_modules/bulma/sass/layout/footer.sass +5 -0
  57. data/node_modules/bulma/sass/layout/hero.sass +158 -0
  58. data/node_modules/bulma/sass/layout/section.sass +13 -0
  59. data/node_modules/bulma/sass/utilities/_all.sass +8 -0
  60. data/node_modules/bulma/sass/utilities/animations.sass +5 -0
  61. data/node_modules/bulma/sass/utilities/controls.sass +49 -0
  62. data/node_modules/bulma/sass/utilities/derived-variables.sass +84 -0
  63. data/node_modules/bulma/sass/utilities/functions.sass +62 -0
  64. data/node_modules/bulma/sass/utilities/initial-variables.sass +72 -0
  65. data/node_modules/bulma/sass/utilities/mixins.sass +261 -0
  66. metadata +59 -2
@@ -0,0 +1,261 @@
1
+ @import "initial-variables"
2
+
3
+ =clearfix
4
+ &::after
5
+ clear: both
6
+ content: " "
7
+ display: table
8
+
9
+ =center($width, $height: 0)
10
+ position: absolute
11
+ @if $height != 0
12
+ left: calc(50% - (#{$width} / 2))
13
+ top: calc(50% - (#{$height} / 2))
14
+ @else
15
+ left: calc(50% - (#{$width} / 2))
16
+ top: calc(50% - (#{$width} / 2))
17
+
18
+ =fa($size, $dimensions)
19
+ display: inline-block
20
+ font-size: $size
21
+ height: $dimensions
22
+ line-height: $dimensions
23
+ text-align: center
24
+ vertical-align: top
25
+ width: $dimensions
26
+
27
+ =hamburger($dimensions)
28
+ cursor: pointer
29
+ display: block
30
+ height: $dimensions
31
+ position: relative
32
+ width: $dimensions
33
+ span
34
+ background-color: currentColor
35
+ display: block
36
+ height: 1px
37
+ left: calc(50% - 8px)
38
+ position: absolute
39
+ transform-origin: center
40
+ transition-duration: $speed
41
+ transition-property: background-color, opacity, transform
42
+ transition-timing-function: $easing
43
+ width: 16px
44
+ &:nth-child(1)
45
+ top: calc(50% - 6px)
46
+ &:nth-child(2)
47
+ top: calc(50% - 1px)
48
+ &:nth-child(3)
49
+ top: calc(50% + 4px)
50
+ &:hover
51
+ background-color: rgba(black, 0.05)
52
+ // Modifers
53
+ &.is-active
54
+ span
55
+ &:nth-child(1)
56
+ transform: translateY(5px) rotate(45deg)
57
+ &:nth-child(2)
58
+ opacity: 0
59
+ &:nth-child(3)
60
+ transform: translateY(-5px) rotate(-45deg)
61
+
62
+ =overflow-touch
63
+ -webkit-overflow-scrolling: touch
64
+
65
+ =placeholder
66
+ $placeholders: ':-moz' ':-webkit-input' '-moz' '-ms-input'
67
+ @each $placeholder in $placeholders
68
+ &:#{$placeholder}-placeholder
69
+ @content
70
+
71
+ // Responsiveness
72
+
73
+ =from($device)
74
+ @media screen and (min-width: $device)
75
+ @content
76
+
77
+ =until($device)
78
+ @media screen and (max-width: $device - 1px)
79
+ @content
80
+
81
+ =mobile
82
+ @media screen and (max-width: $tablet - 1px)
83
+ @content
84
+
85
+ =tablet
86
+ @media screen and (min-width: $tablet), print
87
+ @content
88
+
89
+ =tablet-only
90
+ @media screen and (min-width: $tablet) and (max-width: $desktop - 1px)
91
+ @content
92
+
93
+ =touch
94
+ @media screen and (max-width: $desktop - 1px)
95
+ @content
96
+
97
+ =desktop
98
+ @media screen and (min-width: $desktop)
99
+ @content
100
+
101
+ =desktop-only
102
+ @if $widescreen-enabled
103
+ @media screen and (min-width: $desktop) and (max-width: $widescreen - 1px)
104
+ @content
105
+
106
+ =until-widescreen
107
+ @if $widescreen-enabled
108
+ @media screen and (max-width: $widescreen - 1px)
109
+ @content
110
+
111
+ =widescreen
112
+ @if $widescreen-enabled
113
+ @media screen and (min-width: $widescreen)
114
+ @content
115
+
116
+ =widescreen-only
117
+ @if $widescreen-enabled and $fullhd-enabled
118
+ @media screen and (min-width: $widescreen) and (max-width: $fullhd - 1px)
119
+ @content
120
+
121
+ =until-fullhd
122
+ @if $fullhd-enabled
123
+ @media screen and (max-width: $fullhd - 1px)
124
+ @content
125
+
126
+ =fullhd
127
+ @if $fullhd-enabled
128
+ @media screen and (min-width: $fullhd)
129
+ @content
130
+
131
+ // Placeholders
132
+
133
+ =unselectable
134
+ -webkit-touch-callout: none
135
+ -webkit-user-select: none
136
+ -moz-user-select: none
137
+ -ms-user-select: none
138
+ user-select: none
139
+
140
+ %unselectable
141
+ +unselectable
142
+
143
+ =arrow($color: transparent)
144
+ border: 3px solid $color
145
+ border-radius: 2px
146
+ border-right: 0
147
+ border-top: 0
148
+ content: " "
149
+ display: block
150
+ height: 0.625em
151
+ margin-top: -0.4375em
152
+ pointer-events: none
153
+ position: absolute
154
+ top: 50%
155
+ transform: rotate(-45deg)
156
+ transform-origin: center
157
+ width: 0.625em
158
+
159
+ %arrow
160
+ +arrow
161
+
162
+ =block
163
+ &:not(:last-child)
164
+ margin-bottom: 1.5rem
165
+
166
+ %block
167
+ +block
168
+
169
+ =delete
170
+ @extend %unselectable
171
+ -moz-appearance: none
172
+ -webkit-appearance: none
173
+ background-color: rgba($black, 0.2)
174
+ border: none
175
+ border-radius: $radius-rounded
176
+ cursor: pointer
177
+ pointer-events: auto
178
+ display: inline-block
179
+ flex-grow: 0
180
+ flex-shrink: 0
181
+ font-size: 0
182
+ height: 20px
183
+ max-height: 20px
184
+ max-width: 20px
185
+ min-height: 20px
186
+ min-width: 20px
187
+ outline: none
188
+ position: relative
189
+ vertical-align: top
190
+ width: 20px
191
+ &::before,
192
+ &::after
193
+ background-color: $white
194
+ content: ""
195
+ display: block
196
+ left: 50%
197
+ position: absolute
198
+ top: 50%
199
+ transform: translateX(-50%) translateY(-50%) rotate(45deg)
200
+ transform-origin: center center
201
+ &::before
202
+ height: 2px
203
+ width: 50%
204
+ &::after
205
+ height: 50%
206
+ width: 2px
207
+ &:hover,
208
+ &:focus
209
+ background-color: rgba($black, 0.3)
210
+ &:active
211
+ background-color: rgba($black, 0.4)
212
+ // Sizes
213
+ &.is-small
214
+ height: 16px
215
+ max-height: 16px
216
+ max-width: 16px
217
+ min-height: 16px
218
+ min-width: 16px
219
+ width: 16px
220
+ &.is-medium
221
+ height: 24px
222
+ max-height: 24px
223
+ max-width: 24px
224
+ min-height: 24px
225
+ min-width: 24px
226
+ width: 24px
227
+ &.is-large
228
+ height: 32px
229
+ max-height: 32px
230
+ max-width: 32px
231
+ min-height: 32px
232
+ min-width: 32px
233
+ width: 32px
234
+
235
+ %delete
236
+ +delete
237
+
238
+ =loader
239
+ animation: spinAround 500ms infinite linear
240
+ border: 2px solid $grey-lighter
241
+ border-radius: $radius-rounded
242
+ border-right-color: transparent
243
+ border-top-color: transparent
244
+ content: ""
245
+ display: block
246
+ height: 1em
247
+ position: relative
248
+ width: 1em
249
+
250
+ %loader
251
+ +loader
252
+
253
+ =overlay($offset: 0)
254
+ bottom: $offset
255
+ left: $offset
256
+ position: absolute
257
+ right: $offset
258
+ top: $offset
259
+
260
+ %overlay
261
+ +overlay
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bulma-clean-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - chrisrhymes
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-10-13 00:00:00.000000000 Z
11
+ date: 2018-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -75,9 +75,66 @@ files:
75
75
  - _posts/2018-10-12-test2.md
76
76
  - _posts/2018-10-13-test.md
77
77
  - _sass/_layout.scss
78
+ - _sass/_main.scss
78
79
  - assets/css/app.scss
79
80
  - assets/js/app.js
80
81
  - blog/index.html
82
+ - node_modules/.yarn-integrity
83
+ - node_modules/bulma/CHANGELOG.md
84
+ - node_modules/bulma/LICENSE
85
+ - node_modules/bulma/README.md
86
+ - node_modules/bulma/bulma.sass
87
+ - node_modules/bulma/css/bulma.css
88
+ - node_modules/bulma/css/bulma.css.map
89
+ - node_modules/bulma/css/bulma.min.css
90
+ - node_modules/bulma/package.json
91
+ - node_modules/bulma/sass/.DS_Store
92
+ - node_modules/bulma/sass/base/_all.sass
93
+ - node_modules/bulma/sass/base/generic.sass
94
+ - node_modules/bulma/sass/base/helpers.sass
95
+ - node_modules/bulma/sass/base/minireset.sass
96
+ - node_modules/bulma/sass/components/_all.sass
97
+ - node_modules/bulma/sass/components/breadcrumb.sass
98
+ - node_modules/bulma/sass/components/card.sass
99
+ - node_modules/bulma/sass/components/dropdown.sass
100
+ - node_modules/bulma/sass/components/level.sass
101
+ - node_modules/bulma/sass/components/list.sass
102
+ - node_modules/bulma/sass/components/media.sass
103
+ - node_modules/bulma/sass/components/menu.sass
104
+ - node_modules/bulma/sass/components/message.sass
105
+ - node_modules/bulma/sass/components/modal.sass
106
+ - node_modules/bulma/sass/components/navbar.sass
107
+ - node_modules/bulma/sass/components/pagination.sass
108
+ - node_modules/bulma/sass/components/panel.sass
109
+ - node_modules/bulma/sass/components/tabs.sass
110
+ - node_modules/bulma/sass/elements/_all.sass
111
+ - node_modules/bulma/sass/elements/box.sass
112
+ - node_modules/bulma/sass/elements/button.sass
113
+ - node_modules/bulma/sass/elements/container.sass
114
+ - node_modules/bulma/sass/elements/content.sass
115
+ - node_modules/bulma/sass/elements/form.sass
116
+ - node_modules/bulma/sass/elements/icon.sass
117
+ - node_modules/bulma/sass/elements/image.sass
118
+ - node_modules/bulma/sass/elements/notification.sass
119
+ - node_modules/bulma/sass/elements/other.sass
120
+ - node_modules/bulma/sass/elements/progress.sass
121
+ - node_modules/bulma/sass/elements/table.sass
122
+ - node_modules/bulma/sass/elements/tag.sass
123
+ - node_modules/bulma/sass/elements/title.sass
124
+ - node_modules/bulma/sass/grid/_all.sass
125
+ - node_modules/bulma/sass/grid/columns.sass
126
+ - node_modules/bulma/sass/grid/tiles.sass
127
+ - node_modules/bulma/sass/layout/_all.sass
128
+ - node_modules/bulma/sass/layout/footer.sass
129
+ - node_modules/bulma/sass/layout/hero.sass
130
+ - node_modules/bulma/sass/layout/section.sass
131
+ - node_modules/bulma/sass/utilities/_all.sass
132
+ - node_modules/bulma/sass/utilities/animations.sass
133
+ - node_modules/bulma/sass/utilities/controls.sass
134
+ - node_modules/bulma/sass/utilities/derived-variables.sass
135
+ - node_modules/bulma/sass/utilities/functions.sass
136
+ - node_modules/bulma/sass/utilities/initial-variables.sass
137
+ - node_modules/bulma/sass/utilities/mixins.sass
81
138
  - package.json
82
139
  homepage: https://www.github.com/chrisrhymes/bulma-clean-theme
83
140
  licenses: