jekyll-bulma 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +39 -0
- data/_layouts/default.html +1 -0
- data/_layouts/page.html +5 -0
- data/_layouts/post.html +5 -0
- data/_sass/base/_all.sass +5 -0
- data/_sass/base/generic.sass +127 -0
- data/_sass/base/helpers.sass +251 -0
- data/_sass/base/minireset.sass +79 -0
- data/_sass/bulma.sass +8 -0
- data/_sass/components/_all.sass +14 -0
- data/_sass/components/breadcrumb.sass +75 -0
- data/_sass/components/card.sass +74 -0
- data/_sass/components/dropdown.sass +74 -0
- data/_sass/components/level.sass +75 -0
- data/_sass/components/media.sass +44 -0
- data/_sass/components/menu.sass +50 -0
- data/_sass/components/message.sass +86 -0
- data/_sass/components/modal.sass +111 -0
- data/_sass/components/navbar.sass +414 -0
- data/_sass/components/pagination.sass +143 -0
- data/_sass/components/panel.sass +101 -0
- data/_sass/components/tabs.sass +151 -0
- data/_sass/elements/_all.sass +16 -0
- data/_sass/elements/box.sass +24 -0
- data/_sass/elements/button.sass +255 -0
- data/_sass/elements/container.sass +25 -0
- data/_sass/elements/content.sass +141 -0
- data/_sass/elements/form.sass +625 -0
- data/_sass/elements/icon.sass +21 -0
- data/_sass/elements/image.sass +68 -0
- data/_sass/elements/notification.sass +35 -0
- data/_sass/elements/other.sass +39 -0
- data/_sass/elements/progress.sass +40 -0
- data/_sass/elements/table.sass +117 -0
- data/_sass/elements/tag.sass +111 -0
- data/_sass/elements/title.sass +64 -0
- data/_sass/grid/_all.sass +4 -0
- data/_sass/grid/columns.sass +477 -0
- data/_sass/grid/tiles.sass +32 -0
- data/_sass/layout/_all.sass +5 -0
- data/_sass/layout/footer.sass +5 -0
- data/_sass/layout/hero.sass +155 -0
- data/_sass/layout/section.sass +13 -0
- data/_sass/utilities/_all.sass +8 -0
- data/_sass/utilities/animations.sass +5 -0
- data/_sass/utilities/controls.sass +46 -0
- data/_sass/utilities/derived-variables.sass +84 -0
- data/_sass/utilities/functions.sass +62 -0
- data/_sass/utilities/initial-variables.sass +72 -0
- data/_sass/utilities/mixins.sass +266 -0
- data/assets/main.scss +14 -0
- metadata +138 -0
@@ -0,0 +1,46 @@
|
|
1
|
+
$control-radius: $radius !default
|
2
|
+
$control-radius-small: $radius-small !default
|
3
|
+
|
4
|
+
$control-border-width: 1px !default
|
5
|
+
|
6
|
+
$control-padding-vertical: calc(0.375em - #{$control-border-width}) !default
|
7
|
+
$control-padding-horizontal: calc(0.625em - #{$control-border-width}) !default
|
8
|
+
|
9
|
+
%control
|
10
|
+
-moz-appearance: none
|
11
|
+
-webkit-appearance: none
|
12
|
+
align-items: center
|
13
|
+
border: $control-border-width solid transparent
|
14
|
+
border-radius: $control-radius
|
15
|
+
box-shadow: none
|
16
|
+
display: inline-flex
|
17
|
+
font-size: $size-normal
|
18
|
+
height: 2.25em
|
19
|
+
justify-content: flex-start
|
20
|
+
line-height: 1.5
|
21
|
+
padding-bottom: $control-padding-vertical
|
22
|
+
padding-left: $control-padding-horizontal
|
23
|
+
padding-right: $control-padding-horizontal
|
24
|
+
padding-top: $control-padding-vertical
|
25
|
+
position: relative
|
26
|
+
vertical-align: top
|
27
|
+
// States
|
28
|
+
&:focus,
|
29
|
+
&.is-focused,
|
30
|
+
&:active,
|
31
|
+
&.is-active
|
32
|
+
outline: none
|
33
|
+
&[disabled]
|
34
|
+
cursor: not-allowed
|
35
|
+
|
36
|
+
=control
|
37
|
+
@extend %control
|
38
|
+
|
39
|
+
// The controls sizes use mixins so they can be used at different breakpoints
|
40
|
+
=control-small
|
41
|
+
border-radius: $control-radius-small
|
42
|
+
font-size: $size-small
|
43
|
+
=control-medium
|
44
|
+
font-size: $size-medium
|
45
|
+
=control-large
|
46
|
+
font-size: $size-large
|
@@ -0,0 +1,84 @@
|
|
1
|
+
$primary: $turquoise !default
|
2
|
+
|
3
|
+
$info: $cyan !default
|
4
|
+
$success: $green !default
|
5
|
+
$warning: $yellow !default
|
6
|
+
$danger: $red !default
|
7
|
+
|
8
|
+
$light: $white-ter !default
|
9
|
+
$dark: $grey-darker !default
|
10
|
+
|
11
|
+
// Invert colors
|
12
|
+
|
13
|
+
$orange-invert: findColorInvert($orange) !default
|
14
|
+
$yellow-invert: findColorInvert($yellow) !default
|
15
|
+
$green-invert: findColorInvert($green) !default
|
16
|
+
$turquoise-invert: findColorInvert($turquoise) !default
|
17
|
+
$cyan-invert: findColorInvert($cyan) !default
|
18
|
+
$blue-invert: findColorInvert($blue) !default
|
19
|
+
$purple-invert: findColorInvert($purple) !default
|
20
|
+
$red-invert: findColorInvert($red) !default
|
21
|
+
|
22
|
+
$primary-invert: $turquoise-invert !default
|
23
|
+
$info-invert: $cyan-invert !default
|
24
|
+
$success-invert: $green-invert !default
|
25
|
+
$warning-invert: $yellow-invert !default
|
26
|
+
$danger-invert: $red-invert !default
|
27
|
+
$light-invert: $dark !default
|
28
|
+
$dark-invert: $light !default
|
29
|
+
|
30
|
+
// General colors
|
31
|
+
|
32
|
+
$background: $white-ter !default
|
33
|
+
|
34
|
+
$border: $grey-lighter !default
|
35
|
+
$border-hover: $grey-light !default
|
36
|
+
|
37
|
+
// Text colors
|
38
|
+
|
39
|
+
$text: $grey-dark !default
|
40
|
+
$text-invert: findColorInvert($text) !default
|
41
|
+
$text-light: $grey !default
|
42
|
+
$text-strong: $grey-darker !default
|
43
|
+
|
44
|
+
// Code colors
|
45
|
+
|
46
|
+
$code: $red !default
|
47
|
+
$code-background: $background !default
|
48
|
+
|
49
|
+
$pre: $text !default
|
50
|
+
$pre-background: $background !default
|
51
|
+
|
52
|
+
// Link colors
|
53
|
+
|
54
|
+
$link: $blue !default
|
55
|
+
$link-invert: $blue-invert !default
|
56
|
+
$link-visited: $purple !default
|
57
|
+
|
58
|
+
$link-hover: $grey-darker !default
|
59
|
+
$link-hover-border: $grey-light !default
|
60
|
+
|
61
|
+
$link-focus: $grey-darker !default
|
62
|
+
$link-focus-border: $blue !default
|
63
|
+
|
64
|
+
$link-active: $grey-darker !default
|
65
|
+
$link-active-border: $grey-dark !default
|
66
|
+
|
67
|
+
// Typography
|
68
|
+
|
69
|
+
$family-primary: $family-sans-serif !default
|
70
|
+
$family-code: $family-monospace !default
|
71
|
+
|
72
|
+
$size-small: $size-7 !default
|
73
|
+
$size-normal: $size-6 !default
|
74
|
+
$size-medium: $size-5 !default
|
75
|
+
$size-large: $size-4 !default
|
76
|
+
|
77
|
+
// Lists and maps
|
78
|
+
$custom-colors: null !default
|
79
|
+
$custom-shades: null !default
|
80
|
+
|
81
|
+
$colors: mergeColorMaps(("white": ($white, $black), "black": ($black, $white), "light": ($light, $light-invert), "dark": ($dark, $dark-invert), "primary": ($primary, $primary-invert), "link": ($link, $link-invert), "info": ($info, $info-invert), "success": ($success, $success-invert), "warning": ($warning, $warning-invert), "danger": ($danger, $danger-invert)), $custom-colors) !default
|
82
|
+
$shades: mergeColorMaps(("black-bis": $black-bis, "black-ter": $black-ter, "grey-darker": $grey-darker, "grey-dark": $grey-dark, "grey": $grey, "grey-light": $grey-light, "grey-lighter": $grey-lighter, "white-ter": $white-ter, "white-bis": $white-bis), $custom-shades) !default
|
83
|
+
|
84
|
+
$sizes: $size-1 $size-2 $size-3 $size-4 $size-5 $size-6 $size-7 !default
|
@@ -0,0 +1,62 @@
|
|
1
|
+
@function mergeColorMaps($bulma-colors, $custom-colors)
|
2
|
+
// we return at least bulma hardcoded colors
|
3
|
+
$merged-colors: $bulma-colors
|
4
|
+
|
5
|
+
// we want a map as input
|
6
|
+
@if type-of($custom-colors) == 'map'
|
7
|
+
@each $name, $components in $custom-colors
|
8
|
+
// color name should be a string and colors pair a list with at least one element
|
9
|
+
@if type-of($name) == 'string' and (type-of($components) == 'list' or type-of($components) == 'color') and length($components) >= 1
|
10
|
+
$color-base: null
|
11
|
+
|
12
|
+
// the param can either be a single color
|
13
|
+
// or a list of 2 colors
|
14
|
+
@if type-of($components) == 'color'
|
15
|
+
$color-base: $components
|
16
|
+
@else if type-of($components) == 'list'
|
17
|
+
$color-base: nth($components, 1)
|
18
|
+
|
19
|
+
$color-invert: null
|
20
|
+
// is an inverted color provided in the list
|
21
|
+
@if length($components) > 1
|
22
|
+
$color-invert: nth($components, 2)
|
23
|
+
|
24
|
+
// we only want a color as base color
|
25
|
+
@if type-of($color-base) == 'color'
|
26
|
+
// if inverted color is not provided or is not a color we compute it
|
27
|
+
@if type-of($color-invert) != 'color'
|
28
|
+
$color-invert: findColorInvert($color-base)
|
29
|
+
|
30
|
+
// we merge this colors elements as map with bulma colors (we can override them this way, no multiple definition for the same name)
|
31
|
+
$merged-colors: map_merge($merged-colors, ($name: ($color-base, $color-invert)))
|
32
|
+
|
33
|
+
@return $merged-colors
|
34
|
+
|
35
|
+
@function powerNumber($number, $exp)
|
36
|
+
$value: 1
|
37
|
+
@if $exp > 0
|
38
|
+
@for $i from 1 through $exp
|
39
|
+
$value: $value * $number
|
40
|
+
@else if $exp < 0
|
41
|
+
@for $i from 1 through -$exp
|
42
|
+
$value: $value / $number
|
43
|
+
@return $value
|
44
|
+
|
45
|
+
@function colorLuminance($color)
|
46
|
+
$color-rgb: ('red': red($color),'green': green($color),'blue': blue($color))
|
47
|
+
@each $name, $value in $color-rgb
|
48
|
+
$adjusted: 0
|
49
|
+
$value: $value / 255
|
50
|
+
@if $value < 0.03928
|
51
|
+
$value: $value / 12.92
|
52
|
+
@else
|
53
|
+
$value: ($value + .055) / 1.055
|
54
|
+
$value: powerNumber($value, 2)
|
55
|
+
$color-rgb: map-merge($color-rgb, ($name: $value))
|
56
|
+
@return (map-get($color-rgb, 'red') * .2126) + (map-get($color-rgb, 'green') * .7152) + (map-get($color-rgb, 'blue') * .0722)
|
57
|
+
|
58
|
+
@function findColorInvert($color)
|
59
|
+
@if (colorLuminance($color) > 0.55)
|
60
|
+
@return rgba(#000, 0.7)
|
61
|
+
@else
|
62
|
+
@return #fff
|
@@ -0,0 +1,72 @@
|
|
1
|
+
// Colors
|
2
|
+
|
3
|
+
$black: hsl(0, 0%, 4%) !default
|
4
|
+
$black-bis: hsl(0, 0%, 7%) !default
|
5
|
+
$black-ter: hsl(0, 0%, 14%) !default
|
6
|
+
|
7
|
+
$grey-darker: hsl(0, 0%, 21%) !default
|
8
|
+
$grey-dark: hsl(0, 0%, 29%) !default
|
9
|
+
$grey: hsl(0, 0%, 48%) !default
|
10
|
+
$grey-light: hsl(0, 0%, 71%) !default
|
11
|
+
$grey-lighter: hsl(0, 0%, 86%) !default
|
12
|
+
|
13
|
+
$white-ter: hsl(0, 0%, 96%) !default
|
14
|
+
$white-bis: hsl(0, 0%, 98%) !default
|
15
|
+
$white: hsl(0, 0%, 100%) !default
|
16
|
+
|
17
|
+
$orange: hsl(14, 100%, 53%) !default
|
18
|
+
$yellow: hsl(48, 100%, 67%) !default
|
19
|
+
$green: hsl(141, 71%, 48%) !default
|
20
|
+
$turquoise: hsl(171, 100%, 41%) !default
|
21
|
+
$cyan: hsl(204, 86%, 53%) !default
|
22
|
+
$blue: hsl(217, 71%, 53%) !default
|
23
|
+
$purple: hsl(271, 100%, 71%) !default
|
24
|
+
$red: hsl(348, 100%, 61%) !default
|
25
|
+
|
26
|
+
// Typography
|
27
|
+
|
28
|
+
$family-sans-serif: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif !default
|
29
|
+
$family-monospace: monospace !default
|
30
|
+
$render-mode: optimizeLegibility !default
|
31
|
+
|
32
|
+
$size-1: 3rem !default
|
33
|
+
$size-2: 2.5rem !default
|
34
|
+
$size-3: 2rem !default
|
35
|
+
$size-4: 1.5rem !default
|
36
|
+
$size-5: 1.25rem !default
|
37
|
+
$size-6: 1rem !default
|
38
|
+
$size-7: 0.75rem !default
|
39
|
+
|
40
|
+
$weight-light: 300 !default
|
41
|
+
$weight-normal: 400 !default
|
42
|
+
$weight-medium: 500 !default
|
43
|
+
$weight-semibold: 600 !default
|
44
|
+
$weight-bold: 700 !default
|
45
|
+
|
46
|
+
// Responsiveness
|
47
|
+
|
48
|
+
// The container horizontal gap, which acts as the offset for breakpoints
|
49
|
+
$gap: 64px !default
|
50
|
+
// 960, 1152, and 1344 have been chosen because they are divisible by both 12 and 16
|
51
|
+
$tablet: 769px !default
|
52
|
+
// 960px container + 4rem
|
53
|
+
$desktop: 960px + (2 * $gap) !default
|
54
|
+
// 1152px container + 4rem
|
55
|
+
$widescreen: 1152px + (2 * $gap) !default
|
56
|
+
$widescreen-enabled: true !default
|
57
|
+
// 1344px container + 4rem
|
58
|
+
$fullhd: 1344px + (2 * $gap) !default
|
59
|
+
$fullhd-enabled: true !default
|
60
|
+
|
61
|
+
// Miscellaneous
|
62
|
+
|
63
|
+
$easing: ease-out !default
|
64
|
+
$radius-small: 2px !default
|
65
|
+
$radius: 4px !default
|
66
|
+
$radius-large: 6px !default
|
67
|
+
$radius-rounded: 290486px !default
|
68
|
+
$speed: 86ms !default
|
69
|
+
|
70
|
+
// Flags
|
71
|
+
|
72
|
+
$variable-columns: true !default
|
@@ -0,0 +1,266 @@
|
|
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
|
+
@extend %unselectable
|
142
|
+
|
143
|
+
%arrow
|
144
|
+
border: 3px solid transparent
|
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($color)
|
160
|
+
@extend %arrow
|
161
|
+
border-color: $color
|
162
|
+
|
163
|
+
%block
|
164
|
+
&:not(:last-child)
|
165
|
+
margin-bottom: 1.5rem
|
166
|
+
|
167
|
+
=block
|
168
|
+
@extend %block
|
169
|
+
|
170
|
+
%delete
|
171
|
+
@extend %unselectable
|
172
|
+
-moz-appearance: none
|
173
|
+
-webkit-appearance: none
|
174
|
+
background-color: rgba($black, 0.2)
|
175
|
+
border: none
|
176
|
+
border-radius: $radius-rounded
|
177
|
+
cursor: pointer
|
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
|
+
@extend %delete
|
237
|
+
|
238
|
+
%loader
|
239
|
+
animation: spinAround 500ms infinite linear
|
240
|
+
border: 2px solid $border
|
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
|
+
@extend %loader
|
252
|
+
|
253
|
+
%overlay
|
254
|
+
bottom: 0
|
255
|
+
left: 0
|
256
|
+
position: absolute
|
257
|
+
right: 0
|
258
|
+
top: 0
|
259
|
+
|
260
|
+
=overlay($offset: 0)
|
261
|
+
@extend %overlay
|
262
|
+
@if $offset != 0
|
263
|
+
bottom: $offset
|
264
|
+
left: $offset
|
265
|
+
right: $offset
|
266
|
+
top: $offset
|
data/assets/main.scss
ADDED
metadata
ADDED
@@ -0,0 +1,138 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: jekyll-bulma
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Stefan Haslinger
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-07-06 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.8'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.8'
|
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.16'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.16'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '12.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '12.0'
|
55
|
+
description:
|
56
|
+
email:
|
57
|
+
- stefan.haslinger@panoptikum.io
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files: []
|
61
|
+
files:
|
62
|
+
- LICENSE.txt
|
63
|
+
- README.md
|
64
|
+
- _layouts/default.html
|
65
|
+
- _layouts/page.html
|
66
|
+
- _layouts/post.html
|
67
|
+
- _sass/base/_all.sass
|
68
|
+
- _sass/base/generic.sass
|
69
|
+
- _sass/base/helpers.sass
|
70
|
+
- _sass/base/minireset.sass
|
71
|
+
- _sass/bulma.sass
|
72
|
+
- _sass/components/_all.sass
|
73
|
+
- _sass/components/breadcrumb.sass
|
74
|
+
- _sass/components/card.sass
|
75
|
+
- _sass/components/dropdown.sass
|
76
|
+
- _sass/components/level.sass
|
77
|
+
- _sass/components/media.sass
|
78
|
+
- _sass/components/menu.sass
|
79
|
+
- _sass/components/message.sass
|
80
|
+
- _sass/components/modal.sass
|
81
|
+
- _sass/components/navbar.sass
|
82
|
+
- _sass/components/pagination.sass
|
83
|
+
- _sass/components/panel.sass
|
84
|
+
- _sass/components/tabs.sass
|
85
|
+
- _sass/elements/_all.sass
|
86
|
+
- _sass/elements/box.sass
|
87
|
+
- _sass/elements/button.sass
|
88
|
+
- _sass/elements/container.sass
|
89
|
+
- _sass/elements/content.sass
|
90
|
+
- _sass/elements/form.sass
|
91
|
+
- _sass/elements/icon.sass
|
92
|
+
- _sass/elements/image.sass
|
93
|
+
- _sass/elements/notification.sass
|
94
|
+
- _sass/elements/other.sass
|
95
|
+
- _sass/elements/progress.sass
|
96
|
+
- _sass/elements/table.sass
|
97
|
+
- _sass/elements/tag.sass
|
98
|
+
- _sass/elements/title.sass
|
99
|
+
- _sass/grid/_all.sass
|
100
|
+
- _sass/grid/columns.sass
|
101
|
+
- _sass/grid/tiles.sass
|
102
|
+
- _sass/layout/_all.sass
|
103
|
+
- _sass/layout/footer.sass
|
104
|
+
- _sass/layout/hero.sass
|
105
|
+
- _sass/layout/section.sass
|
106
|
+
- _sass/utilities/_all.sass
|
107
|
+
- _sass/utilities/animations.sass
|
108
|
+
- _sass/utilities/controls.sass
|
109
|
+
- _sass/utilities/derived-variables.sass
|
110
|
+
- _sass/utilities/functions.sass
|
111
|
+
- _sass/utilities/initial-variables.sass
|
112
|
+
- _sass/utilities/mixins.sass
|
113
|
+
- assets/main.scss
|
114
|
+
homepage: http://github.com/jekyll-octopod/jekyll-bulma
|
115
|
+
licenses:
|
116
|
+
- MIT
|
117
|
+
metadata: {}
|
118
|
+
post_install_message:
|
119
|
+
rdoc_options: []
|
120
|
+
require_paths:
|
121
|
+
- lib
|
122
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
123
|
+
requirements:
|
124
|
+
- - ">="
|
125
|
+
- !ruby/object:Gem::Version
|
126
|
+
version: '0'
|
127
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - ">="
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: '0'
|
132
|
+
requirements: []
|
133
|
+
rubyforge_project:
|
134
|
+
rubygems_version: 2.7.3
|
135
|
+
signing_key:
|
136
|
+
specification_version: 4
|
137
|
+
summary: Bulma + Fontawesome + Theme = jekyll-bulma
|
138
|
+
test_files: []
|