mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Deploy 0.5.3
This commit is contained in:
parent
2315388413
commit
f4ca63d1ce
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bulma",
|
||||
"version": "0.5.2",
|
||||
"version": "0.5.3",
|
||||
"homepage": "http://bulma.io",
|
||||
"authors": [
|
||||
"jgthms <bbxdesign@gmail.com>"
|
||||
|
2
bulma.sass
vendored
2
bulma.sass
vendored
@ -1,5 +1,5 @@
|
||||
@charset "utf-8"
|
||||
/*! bulma.io v0.5.2 | MIT License | github.com/jgthms/bulma */
|
||||
/*! bulma.io v0.5.3 | MIT License | github.com/jgthms/bulma */
|
||||
@import "sass/utilities/_all"
|
||||
@import "sass/base/_all"
|
||||
@import "sass/elements/_all"
|
||||
|
124
css/bulma.css
vendored
124
css/bulma.css
vendored
@ -1,4 +1,4 @@
|
||||
/*! bulma.io v0.5.2 | MIT License | github.com/jgthms/bulma */
|
||||
/*! bulma.io v0.5.3 | MIT License | github.com/jgthms/bulma */
|
||||
@-webkit-keyframes spinAround {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg);
|
||||
@ -209,21 +209,21 @@ strong {
|
||||
}
|
||||
|
||||
pre {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
background-color: whitesmoke;
|
||||
color: #4a4a4a;
|
||||
font-size: 0.875em;
|
||||
overflow-x: auto;
|
||||
padding: 1.25rem 1.5rem;
|
||||
white-space: pre;
|
||||
word-wrap: normal;
|
||||
}
|
||||
|
||||
pre code {
|
||||
-webkit-overflow-scrolling: touch;
|
||||
background: none;
|
||||
color: inherit;
|
||||
display: block;
|
||||
background-color: transparent;
|
||||
color: currentColor;
|
||||
font-size: 1em;
|
||||
overflow-x: auto;
|
||||
padding: 1.25rem 1.5rem;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
table td,
|
||||
@ -492,6 +492,64 @@ table th {
|
||||
}
|
||||
}
|
||||
|
||||
.has-text-justified {
|
||||
text-align: justify !important;
|
||||
}
|
||||
|
||||
@media screen and (max-width: 768px) {
|
||||
.has-text-justified-mobile {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px), print {
|
||||
.has-text-justified-tablet {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px) and (max-width: 1023px) {
|
||||
.has-text-justified-tablet-only {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 1023px) {
|
||||
.has-text-justified-touch {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) {
|
||||
.has-text-justified-desktop {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1024px) and (max-width: 1215px) {
|
||||
.has-text-justified-desktop-only {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1216px) {
|
||||
.has-text-justified-widescreen {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1216px) and (max-width: 1407px) {
|
||||
.has-text-justified-widescreen-only {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1408px) {
|
||||
.has-text-justified-fullhd {
|
||||
text-align: justify !important;
|
||||
}
|
||||
}
|
||||
|
||||
.has-text-left {
|
||||
text-align: left !important;
|
||||
}
|
||||
@ -2582,6 +2640,12 @@ a.box:active {
|
||||
border-radius: 290486px;
|
||||
}
|
||||
|
||||
.input[readonly],
|
||||
.textarea[readonly] {
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.input.is-white,
|
||||
.textarea.is-white {
|
||||
border-color: white;
|
||||
@ -2736,6 +2800,15 @@ a.box:active {
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.input.is-static {
|
||||
background-color: transparent;
|
||||
border-color: transparent;
|
||||
-webkit-box-shadow: none;
|
||||
box-shadow: none;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
.textarea {
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
@ -4900,6 +4973,10 @@ a.tag:hover {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.breadcrumb li:first-child a {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.breadcrumb li.is-active a {
|
||||
color: #363636;
|
||||
cursor: default;
|
||||
@ -5011,6 +5088,12 @@ a.tag:hover {
|
||||
padding: 0.75rem;
|
||||
}
|
||||
|
||||
.card-header-title.is-centered {
|
||||
-webkit-box-pack: center;
|
||||
-ms-flex-pack: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.card-header-icon {
|
||||
-webkit-box-align: center;
|
||||
-ms-flex-align: center;
|
||||
@ -5441,6 +5524,15 @@ a.dropdown-item.is-active {
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.message strong {
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
.message a:not(.button):not(.tag) {
|
||||
color: currentColor;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.message.is-small {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
@ -5597,15 +5689,6 @@ a.dropdown-item.is-active {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.message-header a:not(.button),
|
||||
.message-header strong {
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
.message-header a:not(.button) {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.message-header .delete {
|
||||
-webkit-box-flex: 0;
|
||||
-ms-flex-positive: 0;
|
||||
@ -5628,15 +5711,6 @@ a.dropdown-item.is-active {
|
||||
padding: 1em 1.25em;
|
||||
}
|
||||
|
||||
.message-body a:not(.button),
|
||||
.message-body strong {
|
||||
color: currentColor;
|
||||
}
|
||||
|
||||
.message-body a:not(.button) {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.message-body code,
|
||||
.message-body pre {
|
||||
background-color: white;
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,5 +1,5 @@
|
||||
@charset "UTF-8";
|
||||
/*! bulma.io v0.5.2 | MIT License | github.com/jgthms/bulma */
|
||||
/*! bulma.io v0.5.3 | MIT License | github.com/jgthms/bulma */
|
||||
@-webkit-keyframes spinAround {
|
||||
from {
|
||||
-webkit-transform: rotate(0deg);
|
||||
|
File diff suppressed because one or more lines are too long
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "bulma",
|
||||
"version": "0.5.2",
|
||||
"version": "0.5.3",
|
||||
"homepage": "http://bulma.io",
|
||||
"author": "Jeremy Thomas <bbxdesign@gmail.com> (http://jgthms.com)",
|
||||
"description": "Modern CSS framework based on Flexbox",
|
||||
|
Loading…
Reference in New Issue
Block a user