Deploy 0.6.1

This commit is contained in:
Jeremy Thomas 2017-11-06 13:27:13 +00:00
parent d97c69bdfa
commit 27c5e7bd57
6 changed files with 633 additions and 40 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "bulma", "name": "bulma",
"version": "0.6.0", "version": "0.6.1",
"homepage": "https://bulma.io", "homepage": "https://bulma.io",
"authors": [ "authors": [
"jgthms <bbxdesign@gmail.com>" "jgthms <bbxdesign@gmail.com>"

2
bulma.sass vendored
View File

@ -1,5 +1,5 @@
@charset "utf-8" @charset "utf-8"
/*! bulma.io v0.6.0 | MIT License | github.com/jgthms/bulma */ /*! bulma.io v0.6.1 | MIT License | github.com/jgthms/bulma */
@import "sass/utilities/_all" @import "sass/utilities/_all"
@import "sass/base/_all" @import "sass/base/_all"
@import "sass/elements/_all" @import "sass/elements/_all"

663
css/bulma.css vendored
View File

@ -1,4 +1,4 @@
/*! bulma.io v0.6.0 | MIT License | github.com/jgthms/bulma */ /*! bulma.io v0.6.1 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround { @-webkit-keyframes spinAround {
from { from {
-webkit-transform: rotate(0deg); -webkit-transform: rotate(0deg);
@ -108,7 +108,7 @@ th {
} }
html { html {
background-color: #fff; background-color: white;
font-size: 16px; font-size: 16px;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
@ -1198,6 +1198,64 @@ a.has-text-danger:hover, a.has-text-danger:focus {
} }
} }
.is-invisible {
visibility: hidden !important;
}
@media screen and (max-width: 768px) {
.is-invisible-mobile {
visibility: hidden !important;
}
}
@media screen and (min-width: 769px), print {
.is-invisible-tablet {
visibility: hidden !important;
}
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
.is-invisible-tablet-only {
visibility: hidden !important;
}
}
@media screen and (max-width: 1023px) {
.is-invisible-touch {
visibility: hidden !important;
}
}
@media screen and (min-width: 1024px) {
.is-invisible-desktop {
visibility: hidden !important;
}
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
.is-invisible-desktop-only {
visibility: hidden !important;
}
}
@media screen and (min-width: 1216px) {
.is-invisible-widescreen {
visibility: hidden !important;
}
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
.is-invisible-widescreen-only {
visibility: hidden !important;
}
}
@media screen and (min-width: 1408px) {
.is-invisible-fullhd {
visibility: hidden !important;
}
}
.is-marginless { .is-marginless {
margin: 0 !important; margin: 0 !important;
} }
@ -2416,6 +2474,75 @@ a.box:active {
pointer-events: none; pointer-events: none;
} }
.buttons {
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-box-pack: start;
-ms-flex-pack: start;
justify-content: flex-start;
}
.buttons .button {
margin-bottom: 0.5rem;
}
.buttons .button:not(:last-child) {
margin-right: 0.5rem;
}
.buttons:last-child {
margin-bottom: -0.5rem;
}
.buttons:not(:last-child) {
margin-bottom: 1rem;
}
.buttons.has-addons .button:not(:first-child) {
border-bottom-left-radius: 0;
border-top-left-radius: 0;
}
.buttons.has-addons .button:not(:last-child) {
border-bottom-right-radius: 0;
border-top-right-radius: 0;
margin-right: -1px;
}
.buttons.has-addons .button:last-child {
margin-right: 0;
}
.buttons.has-addons .button:hover, .buttons.has-addons .button.is-hovered {
z-index: 2;
}
.buttons.has-addons .button:focus, .buttons.has-addons .button.is-focused, .buttons.has-addons .button:active, .buttons.has-addons .button.is-active, .buttons.has-addons .button.is-selected {
z-index: 3;
}
.buttons.has-addons .button:focus:hover, .buttons.has-addons .button.is-focused:hover, .buttons.has-addons .button:active:hover, .buttons.has-addons .button.is-active:hover, .buttons.has-addons .button.is-selected:hover {
z-index: 4;
}
.buttons.is-centered {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.buttons.is-right {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.container { .container {
margin: 0 auto; margin: 0 auto;
position: relative; position: relative;
@ -3021,6 +3148,8 @@ a.box:active {
position: absolute; position: absolute;
-webkit-transform: rotate(-45deg); -webkit-transform: rotate(-45deg);
transform: rotate(-45deg); transform: rotate(-45deg);
-webkit-transform-origin: center;
transform-origin: center;
width: 0.5em; width: 0.5em;
margin-top: -0.375em; margin-top: -0.375em;
right: 1.125em; right: 1.125em;
@ -3591,6 +3720,14 @@ a.box:active {
border-top-left-radius: 0; border-top-left-radius: 0;
} }
.file.has-name.is-empty .file-cta {
border-radius: 3px;
}
.file.has-name.is-empty .file-name {
display: none;
}
.file.is-centered { .file.is-centered {
-webkit-box-pack: center; -webkit-box-pack: center;
-ms-flex-pack: center; -ms-flex-pack: center;
@ -4454,6 +4591,11 @@ a.box:active {
background-color: #4a4a4a; background-color: #4a4a4a;
} }
.progress::-ms-fill {
background-color: #4a4a4a;
border: none;
}
.progress.is-white::-webkit-progress-value { .progress.is-white::-webkit-progress-value {
background-color: white; background-color: white;
} }
@ -4462,6 +4604,10 @@ a.box:active {
background-color: white; background-color: white;
} }
.progress.is-white::-ms-fill {
background-color: white;
}
.progress.is-black::-webkit-progress-value { .progress.is-black::-webkit-progress-value {
background-color: #0a0a0a; background-color: #0a0a0a;
} }
@ -4470,6 +4616,10 @@ a.box:active {
background-color: #0a0a0a; background-color: #0a0a0a;
} }
.progress.is-black::-ms-fill {
background-color: #0a0a0a;
}
.progress.is-light::-webkit-progress-value { .progress.is-light::-webkit-progress-value {
background-color: whitesmoke; background-color: whitesmoke;
} }
@ -4478,6 +4628,10 @@ a.box:active {
background-color: whitesmoke; background-color: whitesmoke;
} }
.progress.is-light::-ms-fill {
background-color: whitesmoke;
}
.progress.is-dark::-webkit-progress-value { .progress.is-dark::-webkit-progress-value {
background-color: #363636; background-color: #363636;
} }
@ -4486,6 +4640,10 @@ a.box:active {
background-color: #363636; background-color: #363636;
} }
.progress.is-dark::-ms-fill {
background-color: #363636;
}
.progress.is-primary::-webkit-progress-value { .progress.is-primary::-webkit-progress-value {
background-color: #00d1b2; background-color: #00d1b2;
} }
@ -4494,6 +4652,10 @@ a.box:active {
background-color: #00d1b2; background-color: #00d1b2;
} }
.progress.is-primary::-ms-fill {
background-color: #00d1b2;
}
.progress.is-link::-webkit-progress-value { .progress.is-link::-webkit-progress-value {
background-color: #3273dc; background-color: #3273dc;
} }
@ -4502,6 +4664,10 @@ a.box:active {
background-color: #3273dc; background-color: #3273dc;
} }
.progress.is-link::-ms-fill {
background-color: #3273dc;
}
.progress.is-info::-webkit-progress-value { .progress.is-info::-webkit-progress-value {
background-color: #209cee; background-color: #209cee;
} }
@ -4510,6 +4676,10 @@ a.box:active {
background-color: #209cee; background-color: #209cee;
} }
.progress.is-info::-ms-fill {
background-color: #209cee;
}
.progress.is-success::-webkit-progress-value { .progress.is-success::-webkit-progress-value {
background-color: #23d160; background-color: #23d160;
} }
@ -4518,6 +4688,10 @@ a.box:active {
background-color: #23d160; background-color: #23d160;
} }
.progress.is-success::-ms-fill {
background-color: #23d160;
}
.progress.is-warning::-webkit-progress-value { .progress.is-warning::-webkit-progress-value {
background-color: #ffdd57; background-color: #ffdd57;
} }
@ -4526,6 +4700,10 @@ a.box:active {
background-color: #ffdd57; background-color: #ffdd57;
} }
.progress.is-warning::-ms-fill {
background-color: #ffdd57;
}
.progress.is-danger::-webkit-progress-value { .progress.is-danger::-webkit-progress-value {
background-color: #ff3860; background-color: #ff3860;
} }
@ -4534,6 +4712,10 @@ a.box:active {
background-color: #ff3860; background-color: #ff3860;
} }
.progress.is-danger::-ms-fill {
background-color: #ff3860;
}
.progress.is-small { .progress.is-small {
height: 0.75rem; height: 0.75rem;
} }
@ -4636,6 +4818,19 @@ a.box:active {
width: 1%; width: 1%;
} }
.table td.is-selected,
.table th.is-selected {
background-color: #00d1b2;
color: #fff;
}
.table td.is-selected a,
.table td.is-selected strong,
.table th.is-selected a,
.table th.is-selected strong {
color: currentColor;
}
.table th { .table th {
color: #363636; color: #363636;
text-align: left; text-align: left;
@ -4688,7 +4883,7 @@ a.box:active {
width: 100%; width: 100%;
} }
.table.is-hoverable tbody tr:hover { .table.is-hoverable tbody tr:not(.is-selected):hover {
background-color: #fafafa; background-color: #fafafa;
} }
@ -4749,6 +4944,31 @@ a.box:active {
border-top-right-radius: 0; border-top-right-radius: 0;
} }
.tags.is-centered {
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.tags.is-centered .tag {
margin-right: 0.25rem;
margin-left: 0.25rem;
}
.tags.is-right {
-webkit-box-pack: end;
-ms-flex-pack: end;
justify-content: flex-end;
}
.tags.is-right .tag:not(:first-child) {
margin-left: 0.5rem;
}
.tags.is-right .tag:not(:last-child) {
margin-right: 0;
}
.tag:not(body) { .tag:not(body) {
-webkit-box-align: center; -webkit-box-align: center;
-ms-flex-align: center; -ms-flex-align: center;
@ -4833,6 +5053,21 @@ a.box:active {
font-size: 1.25rem; font-size: 1.25rem;
} }
.tag:not(body) .icon:first-child:not(:last-child) {
margin-left: -0.375em;
margin-right: 0.1875em;
}
.tag:not(body) .icon:last-child:not(:first-child) {
margin-left: 0.1875em;
margin-right: -0.375em;
}
.tag:not(body) .icon:first-child:last-child {
margin-left: -0.375em;
margin-right: -0.375em;
}
.tag:not(body).is-delete { .tag:not(body).is-delete {
margin-left: 1px; margin-left: 1px;
padding: 0; padding: 0;
@ -5015,7 +5250,7 @@ a.tag:hover {
flex-grow: 0; flex-grow: 0;
-ms-flex-negative: 0; -ms-flex-negative: 0;
flex-shrink: 0; flex-shrink: 0;
font-size: 1rem; font-size: 0;
height: 20px; height: 20px;
max-height: 20px; max-height: 20px;
max-width: 20px; max-width: 20px;
@ -6034,7 +6269,7 @@ a.dropdown-item.is-active {
flex-grow: 0; flex-grow: 0;
-ms-flex-negative: 0; -ms-flex-negative: 0;
flex-shrink: 0; flex-shrink: 0;
font-size: 1rem; font-size: 0;
height: 20px; height: 20px;
max-height: 20px; max-height: 20px;
max-width: 20px; max-width: 20px;
@ -6731,6 +6966,34 @@ a.dropdown-item.is-active {
box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1); box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
} }
.navbar.is-fixed-bottom, .navbar.is-fixed-top {
left: 0;
position: fixed;
right: 0;
z-index: 30;
}
.navbar.is-fixed-bottom {
bottom: 0;
}
.navbar.is-fixed-bottom.has-shadow {
-webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top {
top: 0;
}
html.has-navbar-fixed-top {
padding-top: 3.25rem;
}
html.has-navbar-fixed-bottom {
padding-bottom: 3.25rem;
}
.navbar-brand, .navbar-brand,
.navbar-tabs { .navbar-tabs {
-webkit-box-align: stretch; -webkit-box-align: stretch;
@ -6764,29 +7027,31 @@ a.dropdown-item.is-active {
background-color: currentColor; background-color: currentColor;
display: block; display: block;
height: 1px; height: 1px;
left: 50%; left: calc(50% - 8px);
margin-left: -7px;
position: absolute; position: absolute;
top: 50%; -webkit-transform-origin: center;
-webkit-transition: none 86ms ease-out; transform-origin: center;
transition: none 86ms ease-out; -webkit-transition-duration: 86ms;
-webkit-transition-property: background, left, opacity, -webkit-transform; transition-duration: 86ms;
transition-property: background, left, opacity, -webkit-transform; -webkit-transition-property: background-color, opacity, -webkit-transform;
transition-property: background, left, opacity, transform; transition-property: background-color, opacity, -webkit-transform;
transition-property: background, left, opacity, transform, -webkit-transform; transition-property: background-color, opacity, transform;
width: 15px; transition-property: background-color, opacity, transform, -webkit-transform;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
width: 16px;
} }
.navbar-burger span:nth-child(1) { .navbar-burger span:nth-child(1) {
margin-top: -6px; top: calc(50% - 6px);
} }
.navbar-burger span:nth-child(2) { .navbar-burger span:nth-child(2) {
margin-top: -1px; top: calc(50% - 1px);
} }
.navbar-burger span:nth-child(3) { .navbar-burger span:nth-child(3) {
margin-top: 4px; top: calc(50% + 4px);
} }
.navbar-burger:hover { .navbar-burger:hover {
@ -6794,11 +7059,8 @@ a.dropdown-item.is-active {
} }
.navbar-burger.is-active span:nth-child(1) { .navbar-burger.is-active span:nth-child(1) {
margin-left: -5px; -webkit-transform: translateY(5px) rotate(45deg);
-webkit-transform: rotate(45deg); transform: translateY(5px) rotate(45deg);
transform: rotate(45deg);
-webkit-transform-origin: left top;
transform-origin: left top;
} }
.navbar-burger.is-active span:nth-child(2) { .navbar-burger.is-active span:nth-child(2) {
@ -6806,11 +7068,8 @@ a.dropdown-item.is-active {
} }
.navbar-burger.is-active span:nth-child(3) { .navbar-burger.is-active span:nth-child(3) {
margin-left: -5px; -webkit-transform: translateY(-5px) rotate(-45deg);
-webkit-transform: rotate(-45deg); transform: translateY(-5px) rotate(-45deg);
transform: rotate(-45deg);
-webkit-transform-origin: left bottom;
transform-origin: left bottom;
} }
.navbar-menu { .navbar-menu {
@ -6827,10 +7086,10 @@ a.dropdown-item.is-active {
} }
a.navbar-item:hover, a.navbar-item.is-active, a.navbar-item:hover, a.navbar-item.is-active,
.navbar-link:hover, a.navbar-link:hover,
.navbar-link.is-active { a.navbar-link.is-active {
background-color: whitesmoke; background-color: whitesmoke;
color: #0a0a0a; color: #3273dc;
} }
.navbar-item { .navbar-item {
@ -6849,6 +7108,14 @@ a.navbar-item:hover, a.navbar-item.is-active,
padding: 0; padding: 0;
} }
.navbar-item.is-expanded {
-webkit-box-flex: 1;
-ms-flex-positive: 1;
flex-grow: 1;
-ms-flex-negative: 1;
flex-shrink: 1;
}
.navbar-item.is-tab { .navbar-item.is-tab {
border-bottom: 1px solid transparent; border-bottom: 1px solid transparent;
min-height: 3.25rem; min-height: 3.25rem;
@ -6922,6 +7189,33 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar-menu.is-active { .navbar-menu.is-active {
display: block; display: block;
} }
.navbar.is-fixed-bottom-touch, .navbar.is-fixed-top-touch {
left: 0;
position: fixed;
right: 0;
z-index: 30;
}
.navbar.is-fixed-bottom-touch {
bottom: 0;
}
.navbar.is-fixed-bottom-touch.has-shadow {
-webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top-touch {
top: 0;
}
.navbar.is-fixed-top .navbar-menu, .navbar.is-fixed-top-touch .navbar-menu {
-webkit-overflow-scrolling: touch;
max-height: calc(100vh - 3.25rem);
overflow: auto;
}
html.has-navbar-fixed-top-touch {
padding-top: 3.25rem;
}
html.has-navbar-fixed-bottom-touch {
padding-bottom: 3.25rem;
}
} }
@media screen and (min-width: 1024px) { @media screen and (min-width: 1024px) {
@ -6940,8 +7234,8 @@ a.navbar-item:hover, a.navbar-item.is-active,
min-height: 3.25rem; min-height: 3.25rem;
} }
.navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active, .navbar.is-transparent a.navbar-item:hover, .navbar.is-transparent a.navbar-item.is-active,
.navbar.is-transparent .navbar-link:hover, .navbar.is-transparent a.navbar-link:hover,
.navbar.is-transparent .navbar-link.is-active { .navbar.is-transparent a.navbar-link.is-active {
background-color: transparent !important; background-color: transparent !important;
} }
.navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link { .navbar.is-transparent .navbar-item.has-dropdown.is-active .navbar-link, .navbar.is-transparent .navbar-item.has-dropdown.is-hoverable:hover .navbar-link {
@ -6972,6 +7266,19 @@ a.navbar-item:hover, a.navbar-item.is-active,
-ms-flex-align: stretch; -ms-flex-align: stretch;
align-items: stretch; align-items: stretch;
} }
.navbar-item.has-dropdown-up .navbar-link::after {
-webkit-transform: rotate(135deg) translate(0.25em, -0.25em);
transform: rotate(135deg) translate(0.25em, -0.25em);
}
.navbar-item.has-dropdown-up .navbar-dropdown {
border-bottom: 1px solid #dbdbdb;
border-radius: 5px 5px 0 0;
border-top: none;
bottom: 100%;
-webkit-box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
box-shadow: 0 -8px 8px rgba(10, 10, 10, 0.1);
top: auto;
}
.navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown { .navbar-item.is-active .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown {
display: block; display: block;
} }
@ -6992,6 +7299,8 @@ a.navbar-item:hover, a.navbar-item.is-active,
position: absolute; position: absolute;
-webkit-transform: rotate(-45deg); -webkit-transform: rotate(-45deg);
transform: rotate(-45deg); transform: rotate(-45deg);
-webkit-transform-origin: center;
transform-origin: center;
width: 0.5em; width: 0.5em;
margin-top: -0.375em; margin-top: -0.375em;
right: 1.125em; right: 1.125em;
@ -7071,18 +7380,42 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar-divider { .navbar-divider {
display: block; display: block;
} }
.navbar > .container .navbar-brand,
.container > .navbar .navbar-brand { .container > .navbar .navbar-brand {
margin-left: -1rem; margin-left: -1rem;
} }
.navbar > .container .navbar-menu,
.container > .navbar .navbar-menu { .container > .navbar .navbar-menu {
margin-right: -1rem; margin-right: -1rem;
} }
.navbar.is-fixed-bottom-desktop, .navbar.is-fixed-top-desktop {
left: 0;
position: fixed;
right: 0;
z-index: 30;
}
.navbar.is-fixed-bottom-desktop {
bottom: 0;
}
.navbar.is-fixed-bottom-desktop.has-shadow {
-webkit-box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top-desktop {
top: 0;
}
html.has-navbar-fixed-top-desktop {
padding-top: 3.25rem;
}
html.has-navbar-fixed-bottom-desktop {
padding-bottom: 3.25rem;
}
a.navbar-item.is-active, a.navbar-item.is-active,
.navbar-link.is-active { a.navbar-link.is-active {
color: #0a0a0a; color: #0a0a0a;
} }
a.navbar-item.is-active:not(:hover), a.navbar-item.is-active:not(:hover),
.navbar-link.is-active:not(:hover) { a.navbar-link.is-active:not(:hover) {
background-color: transparent; background-color: transparent;
} }
.navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link { .navbar-item.has-dropdown:hover .navbar-link, .navbar-item.has-dropdown.is-active .navbar-link {
@ -7723,6 +8056,34 @@ label.panel-block:hover {
width: 25%; width: 25%;
} }
.columns.is-mobile > .column.is-one-fifth {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.columns.is-mobile > .column.is-two-fifths {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.columns.is-mobile > .column.is-three-fifths {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.columns.is-mobile > .column.is-four-fifths {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.columns.is-mobile > .column.is-offset-three-quarters { .columns.is-mobile > .column.is-offset-three-quarters {
margin-left: 75%; margin-left: 75%;
} }
@ -7743,6 +8104,22 @@ label.panel-block:hover {
margin-left: 25%; margin-left: 25%;
} }
.columns.is-mobile > .column.is-offset-one-fifth {
margin-left: 20%;
}
.columns.is-mobile > .column.is-offset-two-fifths {
margin-left: 40%;
}
.columns.is-mobile > .column.is-offset-three-fifths {
margin-left: 60%;
}
.columns.is-mobile > .column.is-offset-four-fifths {
margin-left: 80%;
}
.columns.is-mobile > .column.is-1 { .columns.is-mobile > .column.is-1 {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -7917,6 +8294,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth-mobile {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths-mobile {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths-mobile {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths-mobile {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters-mobile { .column.is-offset-three-quarters-mobile {
margin-left: 75%; margin-left: 75%;
} }
@ -7932,6 +8333,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter-mobile { .column.is-offset-one-quarter-mobile {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth-mobile {
margin-left: 20%;
}
.column.is-offset-two-fifths-mobile {
margin-left: 40%;
}
.column.is-offset-three-fifths-mobile {
margin-left: 60%;
}
.column.is-offset-four-fifths-mobile {
margin-left: 80%;
}
.column.is-1-mobile { .column.is-1-mobile {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -8084,6 +8497,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth, .column.is-one-fifth-tablet {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths, .column.is-two-fifths-tablet {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths, .column.is-three-fifths-tablet {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths, .column.is-four-fifths-tablet {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet { .column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
margin-left: 75%; margin-left: 75%;
} }
@ -8099,6 +8536,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet { .column.is-offset-one-quarter, .column.is-offset-one-quarter-tablet {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth, .column.is-offset-one-fifth-tablet {
margin-left: 20%;
}
.column.is-offset-two-fifths, .column.is-offset-two-fifths-tablet {
margin-left: 40%;
}
.column.is-offset-three-fifths, .column.is-offset-three-fifths-tablet {
margin-left: 60%;
}
.column.is-offset-four-fifths, .column.is-offset-four-fifths-tablet {
margin-left: 80%;
}
.column.is-1, .column.is-1-tablet { .column.is-1, .column.is-1-tablet {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -8251,6 +8700,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth-touch {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths-touch {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths-touch {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths-touch {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters-touch { .column.is-offset-three-quarters-touch {
margin-left: 75%; margin-left: 75%;
} }
@ -8266,6 +8739,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter-touch { .column.is-offset-one-quarter-touch {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth-touch {
margin-left: 20%;
}
.column.is-offset-two-fifths-touch {
margin-left: 40%;
}
.column.is-offset-three-fifths-touch {
margin-left: 60%;
}
.column.is-offset-four-fifths-touch {
margin-left: 80%;
}
.column.is-1-touch { .column.is-1-touch {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -8418,6 +8903,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth-desktop {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths-desktop {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths-desktop {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths-desktop {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters-desktop { .column.is-offset-three-quarters-desktop {
margin-left: 75%; margin-left: 75%;
} }
@ -8433,6 +8942,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter-desktop { .column.is-offset-one-quarter-desktop {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth-desktop {
margin-left: 20%;
}
.column.is-offset-two-fifths-desktop {
margin-left: 40%;
}
.column.is-offset-three-fifths-desktop {
margin-left: 60%;
}
.column.is-offset-four-fifths-desktop {
margin-left: 80%;
}
.column.is-1-desktop { .column.is-1-desktop {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -8585,6 +9106,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth-widescreen {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths-widescreen {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths-widescreen {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths-widescreen {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters-widescreen { .column.is-offset-three-quarters-widescreen {
margin-left: 75%; margin-left: 75%;
} }
@ -8600,6 +9145,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter-widescreen { .column.is-offset-one-quarter-widescreen {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth-widescreen {
margin-left: 20%;
}
.column.is-offset-two-fifths-widescreen {
margin-left: 40%;
}
.column.is-offset-three-fifths-widescreen {
margin-left: 60%;
}
.column.is-offset-four-fifths-widescreen {
margin-left: 80%;
}
.column.is-1-widescreen { .column.is-1-widescreen {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;
@ -8752,6 +9309,30 @@ label.panel-block:hover {
flex: none; flex: none;
width: 25%; width: 25%;
} }
.column.is-one-fifth-fullhd {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 20%;
}
.column.is-two-fifths-fullhd {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 40%;
}
.column.is-three-fifths-fullhd {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 60%;
}
.column.is-four-fifths-fullhd {
-webkit-box-flex: 0;
-ms-flex: none;
flex: none;
width: 80%;
}
.column.is-offset-three-quarters-fullhd { .column.is-offset-three-quarters-fullhd {
margin-left: 75%; margin-left: 75%;
} }
@ -8767,6 +9348,18 @@ label.panel-block:hover {
.column.is-offset-one-quarter-fullhd { .column.is-offset-one-quarter-fullhd {
margin-left: 25%; margin-left: 25%;
} }
.column.is-offset-one-fifth-fullhd {
margin-left: 20%;
}
.column.is-offset-two-fifths-fullhd {
margin-left: 40%;
}
.column.is-offset-three-fifths-fullhd {
margin-left: 60%;
}
.column.is-offset-four-fifths-fullhd {
margin-left: 80%;
}
.column.is-1-fullhd { .column.is-1-fullhd {
-webkit-box-flex: 0; -webkit-box-flex: 0;
-ms-flex: none; -ms-flex: none;

File diff suppressed because one or more lines are too long

View File

@ -1,5 +1,5 @@
@charset "UTF-8"; @charset "UTF-8";
/*! bulma.io v0.6.0 | MIT License | github.com/jgthms/bulma */ /*! bulma.io v0.6.1 | MIT License | github.com/jgthms/bulma */
@-webkit-keyframes spinAround { @-webkit-keyframes spinAround {
from { from {
-webkit-transform: rotate(0deg); -webkit-transform: rotate(0deg);

View File

@ -1,6 +1,6 @@
{ {
"name": "bulma", "name": "bulma",
"version": "0.6.0", "version": "0.6.1",
"homepage": "https://bulma.io", "homepage": "https://bulma.io",
"author": "Jeremy Thomas <bbxdesign@gmail.com> (http://jgthms.com)", "author": "Jeremy Thomas <bbxdesign@gmail.com> (http://jgthms.com)",
"description": "Modern CSS framework based on Flexbox", "description": "Modern CSS framework based on Flexbox",