diff --git a/docs/_data/blog/migratingv070.json b/docs/_data/blog/migratingv070.json
new file mode 100644
index 00000000..7cba93b6
--- /dev/null
+++ b/docs/_data/blog/migratingv070.json
@@ -0,0 +1,169 @@
+{
+ "removed": [
+ {
+ "file": "sass/components/message.sass",
+ "before": "$message-body-border",
+ "after": ["$message-body-border-color", "$message-body-border-width"]
+ }
+ ],
+ "updated": [
+ {
+ "file": "sass/utilities/initial-variables.sass",
+ "changes": [
+ {
+ "variable": "$gap",
+ "from": "32px",
+ "to": "64px"
+ },
+ {
+ "variable": "$radius",
+ "from": "3px",
+ "to": "4px"
+ },
+ {
+ "variable": "$radius-large",
+ "from": "5px",
+ "to": "6px"
+ }
+ ]
+ },
+ {
+ "file": "sass/base/generic.sass",
+ "changes": [
+ {
+ "variable": "$hr-background-color",
+ "from": "border",
+ "to": "$background"
+ },
+ {
+ "variable": "$hr-height",
+ "from": "1px",
+ "to": "2px"
+ }
+ ]
+ },
+ {
+ "file": "sass/components/message.sass",
+ "changes": [
+ {
+ "variable": "$message-header-padding",
+ "from": "0.5em 0.75em",
+ "to": "0.75em 1em"
+ },
+ {
+ "variable": "$message-body-padding",
+ "from": "1em 1.25em",
+ "to": "1.25em 1.5em"
+ }
+ ]
+ },
+ {
+ "file": "sass/components/navbar.sass",
+ "changes": [
+ {
+ "variable": "$navbar-item-hover-background-color",
+ "from": "$background",
+ "to": "$white-bis"
+ },
+ {
+ "variable": "$navbar-dropdown-border-top",
+ "from": "1px solid $border",
+ "to": "2px solid $border"
+ },
+ {
+ "variable": "$navbar-divider-background-color",
+ "from": "$border",
+ "to": "$background"
+ }
+ ]
+ },
+ {
+ "file": "sass/layout/footer.sass",
+ "changes": [
+ {
+ "variable": "$footer-background-color",
+ "from": "$background",
+ "to": "$white-bis"
+ }
+ ]
+ }
+ ],
+ "new": [
+ {
+ "file":"sass/components/breadcrumb.sass",
+ "newcomers":[
+ {
+ "name": "$breadcrumb-item-padding-vertical",
+ "value": "0"
+ },
+ {
+ "name": "$breadcrumb-item-padding-horizontal",
+ "value": "0.75em"
+ }
+ ]
+ },
+ {
+ "file":"sass/components/message.sass",
+ "newcomers":[
+ {
+ "name": "$message-body-border-color",
+ "value": "$border"
+ },
+ {
+ "name": "$message-body-border-width",
+ "value": "0 0 0 4px"
+ },
+ {
+ "name": "$message-header-weight",
+ "value": "$weight-bold"
+ },
+ {
+ "name": "$message-header-body-border-width",
+ "value": "0"
+ }
+ ]
+ },
+ {
+ "file":"sass/components/navbar.sass",
+ "newcomers":[
+ {
+ "name": "$navbar-box-shadow-size",
+ "value": "0 2px 0 0"
+ },
+ {
+ "name": "$navbar-box-shadow-color",
+ "value": "$background"
+ },
+ {
+ "name": "$navbar-padding-vertical",
+ "value": "1rem"
+ },
+ {
+ "name": "$navbar-padding-horizontal",
+ "value": "2rem"
+ },
+ {
+ "name": "$navbar-z",
+ "value": "30"
+ }
+ ]
+ },
+ {
+ "file":"sass/elements/title.sass",
+ "newcomers":[
+ {
+ "name": "$title-line-height",
+ "value": "1.125"
+ },
+ {
+ "name": "$subtitle-line-height",
+ "value": "1.25"
+ },
+ {
+ "name": "$subtitle-negative-margin",
+ "value": "-1.25rem"
+ }
+ ]
+ }
+ ]
+}
diff --git a/docs/_includes/elements/link.html b/docs/_includes/elements/link.html
index cc942208..0ab9299b 100644
--- a/docs/_includes/elements/link.html
+++ b/docs/_includes/elements/link.html
@@ -14,4 +14,9 @@
{{ include.subtitle }}
+ {% if include.more %}
+
+ {{ include.more }}
+
+ {% endif %}
diff --git a/docs/_posts/2016-02-09-blog-launched-new-responsive-columns-new-helpers.md b/docs/_posts/2016-02-09-blog-launched-new-responsive-columns-new-helpers.md
index 9a4a8d21..75acdba9 100644
--- a/docs/_posts/2016-02-09-blog-launched-new-responsive-columns-new-helpers.md
+++ b/docs/_posts/2016-02-09-blog-launched-new-responsive-columns-new-helpers.md
@@ -1,7 +1,8 @@
---
layout: post
title: "Blog launched, new responsive columns, new helpers"
-introduction: "First blog post on the newly launched blog! It even has its own [RSS feed](/atom.xml) for those who still use that. This blog will be more frequently updated than the [newsletter](#newsletter), so you can subscribe to either or both, as they will be used for different purposes."
+introduction: "Stay updated with everything that's coming up with Bulma"
+long_introduction: "First blog post on the newly launched blog! It even has its own [RSS feed](/atom.xml) for those who still use that. This blog will be more frequently updated than the [newsletter](#newsletter), so you can subscribe to either or both, as they will be used for different purposes."
color: "danger"
name: "Launch!"
icon: "rocket"
diff --git a/docs/_posts/2016-04-11-metro-ui-css-grid-with-bulma-tiles.md b/docs/_posts/2016-04-11-metro-ui-css-grid-with-bulma-tiles.md
index e3d4064c..28ecc8d0 100644
--- a/docs/_posts/2016-04-11-metro-ui-css-grid-with-bulma-tiles.md
+++ b/docs/_posts/2016-04-11-metro-ui-css-grid-with-bulma-tiles.md
@@ -1,7 +1,8 @@
---
layout: post
title: "Metro UI CSS grid with Bulma tiles"
-introduction: "Have you ever wanted to build a **Metro-UI-like grid in CSS**?
Thanks to Flexbox and the new [Bulma tiles](https://bulma.io/documentation/layout/tiles/), you now can! And it only requires 1 HTML element: the `tile` element."
+introduction: "Build a **Metro-UI-like grid in CSS** with the new `tile` element"
+long_introduction: "Have you ever wanted to build a **Metro-UI-like grid in CSS**?
Thanks to Flexbox and the new [Bulma tiles](https://bulma.io/documentation/layout/tiles/), you now can! And it only requires 1 HTML element: the `tile` element."
color: "info"
name: "Metro UI"
icon: "th-large"
diff --git a/docs/_posts/2017-03-10-new-field-element.md b/docs/_posts/2017-03-10-new-field-element.md
index 75cf7dc3..31b821f1 100644
--- a/docs/_posts/2017-03-10-new-field-element.md
+++ b/docs/_posts/2017-03-10-new-field-element.md
@@ -2,7 +2,8 @@
layout: post
title: "New field element (for better controls)"
published: true
-introduction: "The .control
element has been a very versatile container for form controls. But it came at a cost: it was difficult to combine its block characteristics with its inline variations.
"
+introduction: "A new versatile container for form controls"
+long_introduction: "The .control
element has been a very versatile container for form controls. But it came at a cost: it was difficult to combine its block characteristics with its inline variations.
"
color: "success"
name: "Field element"
icon: "square"
diff --git a/docs/_posts/2017-07-24-access-previous-bulma-versions.md b/docs/_posts/2017-07-24-access-previous-bulma-versions.md
index 27b656bd..bd3ac41e 100644
--- a/docs/_posts/2017-07-24-access-previous-bulma-versions.md
+++ b/docs/_posts/2017-07-24-access-previous-bulma-versions.md
@@ -1,7 +1,8 @@
---
layout: post
title: "Access previous Bulma versions"
-introduction: "It is now possible to **access previous versions** of Bulma. Just head towards: [http://versions.bulma.io/](http://versions.bulma.io/)"
+introduction: "It is now possible to **access previous versions** of Bulma"
+long_introduction: "It is now possible to **access previous versions** of Bulma. Just head towards: [http://versions.bulma.io/](http://versions.bulma.io/)"
color: "primary"
name: "Versions"
icon: "undo"
diff --git a/docs/_posts/2017-08-01-bulma-bootstrap-comparison.md b/docs/_posts/2017-08-01-bulma-bootstrap-comparison.md
index 863d4576..aecf78f9 100644
--- a/docs/_posts/2017-08-01-bulma-bootstrap-comparison.md
+++ b/docs/_posts/2017-08-01-bulma-bootstrap-comparison.md
@@ -1,7 +1,8 @@
---
layout: post
title: "Bulma / Bootstrap comparison"
-introduction: "If you're unsure _how_ or _why_ you should try out Bulma if you're familiar to Bootstrap, the new page [\"Alternative to Bootstrap\"](https://bulma.io/alternative-to-bootstrap/) tries to help you answer questions you might have."
+introduction: "New page \"Alternative to Bootstrap\""
+long_introduction: "If you're unsure _how_ or _why_ you should try out Bulma if you're familiar to Bootstrap, the new page [\"Alternative to Bootstrap\"](https://bulma.io/alternative-to-bootstrap/) tries to help you answer questions you might have."
color: "bootstrap"
name: "Bulma over Bootstrap?"
icon: "heart"
diff --git a/docs/_posts/2018-04-11-migration-to-v070.md b/docs/_posts/2018-04-11-migration-to-v070.md
new file mode 100644
index 00000000..02de0a7a
--- /dev/null
+++ b/docs/_posts/2018-04-11-migration-to-v070.md
@@ -0,0 +1,99 @@
+---
+title: "Migrating to v0.7.0"
+layout: post
+introduction: "What has changed"
+color: "success"
+name: "Migrating to v0.7.0"
+icon: "sync-alt"
+---
+
+## Updated default values
+
+{% for item in site.data.blog.migratingv070.updated %}
+
+
+
+
+ File
+ {{ item.file }}
+ |
+
+
+ Variable |
+ From |
+ To |
+
+ {% for change in item.changes %}
+
+
+ {{ change.variable }}
+ |
+
+ {{ change.from }}
+ |
+
+ {{ change.to }}
+ |
+
+ {% endfor %}
+
+
+{% endfor %}
+
+## New variables
+
+{% for item in site.data.blog.migratingv070.new %}
+
+
+
+
+ File
+ {{ item.file }}
+ |
+
+
+ Name |
+ Value |
+
+ {% for newcomer in item.newcomers %}
+
+
+ {{ newcomer.name }}
+ |
+
+ {{ newcomer.value }}
+ |
+
+ {% endfor %}
+
+
+{% endfor %}
+
+## Removed variables
+
+
+
+
+ File |
+ Removed |
+ Replaced with |
+
+
+
+ {% for item in site.data.blog.migratingv070.removed %}
+
+
+ {{ item.file }}
+ |
+
+ {{ item.before }}
+ |
+
+ {% for newcomer in item.after %}
+ {{ newcomer }}
+ {% endfor %}
+ |
+
+ {% endfor %}
+
+
diff --git a/docs/_sass/specific.sass b/docs/_sass/specific.sass
index 076ad598..e68573ba 100644
--- a/docs/_sass/specific.sass
+++ b/docs/_sass/specific.sass
@@ -77,6 +77,10 @@
font-size: 2rem
width: 1.5em
+.bd-link-more
+ font-size: 0.75em
+ opacity: 0.5
+
+desktop
.bd-links
display: flex
diff --git a/docs/blog.html b/docs/blog.html
index f129d491..94a5ddf1 100644
--- a/docs/blog.html
+++ b/docs/blog.html
@@ -39,6 +39,7 @@ breadcrumb:
{% for post in site.posts %}
{% assign subtitle = post.date | date_to_string %}
+ {% assign more = post.introduction | markdownify | strip_html %}
{%
include elements/link.html
url=post.url
@@ -47,7 +48,8 @@ breadcrumb:
icon_regular=post.icon_regular
icon=post.icon
name=post.name
- subtitle=subtitle
+ subtitle=more
+ more=subtitle
%}
{% endfor %}
diff --git a/docs/css/bulma-docs.css b/docs/css/bulma-docs.css
index 9e50a2d2..f6ee11cc 100644
--- a/docs/css/bulma-docs.css
+++ b/docs/css/bulma-docs.css
@@ -1,23 +1,11 @@
@charset "UTF-8";
/*! bulma.io v0.6.2 | MIT License | github.com/jgthms/bulma */
-@-webkit-keyframes spinAround {
- from {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- to {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
- }
-}
@keyframes spinAround {
from {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
+ transform: rotate(0deg);
}
to {
- -webkit-transform: rotate(359deg);
- transform: rotate(359deg);
+ transform: rotate(359deg);
}
}
@@ -44,10 +32,8 @@
pointer-events: none;
position: absolute;
top: 50%;
- -webkit-transform: rotate(-45deg);
- transform: rotate(-45deg);
- -webkit-transform-origin: center;
- transform-origin: center;
+ transform: rotate(-45deg);
+ transform-origin: center;
width: 0.625em;
}
@@ -64,11 +50,8 @@
border-radius: 290486px;
cursor: pointer;
display: inline-block;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
font-size: 0;
height: 20px;
max-height: 20px;
@@ -88,10 +71,8 @@
left: 50%;
position: absolute;
top: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- -webkit-transform-origin: center center;
- transform-origin: center center;
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
+ transform-origin: center center;
}
.delete::before, .modal-close::before {
@@ -140,8 +121,7 @@
}
.button.is-loading::after, .select.is-loading::after, .control.is-loading::after, .loader, .intro-spinner::before {
- -webkit-animation: spinAround 500ms infinite linear;
- animation: spinAround 500ms infinite linear;
+ animation: spinAround 500ms infinite linear;
border: 2px solid #dbdbdb;
border-radius: 290486px;
border-right-color: transparent;
@@ -170,21 +150,14 @@
.pagination-ellipsis {
-moz-appearance: none;
-webkit-appearance: none;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
border: 1px solid transparent;
border-radius: 4px;
- -webkit-box-shadow: none;
- box-shadow: none;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
+ box-shadow: none;
display: inline-flex;
font-size: 1rem;
height: 2.25em;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
line-height: 1.5;
padding-bottom: calc(0.375em - 1px);
padding-left: calc(0.625em - 1px);
@@ -277,13 +250,11 @@ textarea {
}
html {
- -webkit-box-sizing: border-box;
- box-sizing: border-box;
+ box-sizing: border-box;
}
*, *::before, *::after {
- -webkit-box-sizing: inherit;
- box-sizing: inherit;
+ box-sizing: inherit;
}
img,
@@ -317,10 +288,7 @@ html {
overflow-x: hidden;
overflow-y: scroll;
text-rendering: optimizeLegibility;
- -webkit-text-size-adjust: 100%;
- -moz-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- text-size-adjust: 100%;
+ text-size-adjust: 100%;
}
article,
@@ -1106,79 +1074,59 @@ a.has-text-danger:hover, a.has-text-danger:focus {
}
.is-flex {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
@media screen and (max-width: 768px) {
.is-flex-mobile {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 769px), print {
.is-flex-tablet {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 769px) and (max-width: 1087px) {
.is-flex-tablet-only {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (max-width: 1087px) {
.is-flex-touch {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 1088px) {
.is-flex-desktop {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 1088px) and (max-width: 1279px) {
.is-flex-desktop-only {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 1280px) {
.is-flex-widescreen {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 1280px) and (max-width: 1471px) {
.is-flex-widescreen-only {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@media screen and (min-width: 1472px) {
.is-flex-fullhd {
- display: -webkit-box !important;
- display: -ms-flexbox !important;
display: flex !important;
}
}
@@ -1300,79 +1248,59 @@ a.has-text-danger:hover, a.has-text-danger:focus {
}
.is-inline-flex {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
@media screen and (max-width: 768px) {
.is-inline-flex-mobile {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 769px), print {
.is-inline-flex-tablet {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 769px) and (max-width: 1087px) {
.is-inline-flex-tablet-only {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (max-width: 1087px) {
.is-inline-flex-touch {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 1088px) {
.is-inline-flex-desktop {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 1088px) and (max-width: 1279px) {
.is-inline-flex-desktop-only {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 1280px) {
.is-inline-flex-widescreen {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 1280px) and (max-width: 1471px) {
.is-inline-flex-widescreen-only {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@media screen and (min-width: 1472px) {
.is-inline-flex-fullhd {
- display: -webkit-inline-box !important;
- display: -ms-inline-flexbox !important;
display: inline-flex !important;
}
}
@@ -1506,28 +1434,24 @@ a.has-text-danger:hover, a.has-text-danger:focus {
}
.is-shadowless {
- -webkit-box-shadow: none !important;
- box-shadow: none !important;
+ box-shadow: none !important;
}
.box {
background-color: white;
border-radius: 6px;
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
color: #4a4a4a;
display: block;
padding: 1.25rem;
}
a.box:hover, a.box:focus {
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
}
a.box:active {
- -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
- box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
}
.button {
@@ -1536,9 +1460,7 @@ a.box:active {
border-width: 1px;
color: #363636;
cursor: pointer;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding-bottom: calc(0.375em - 1px);
padding-left: 0.75em;
padding-right: 0.75em;
@@ -1582,8 +1504,7 @@ a.box:active {
}
.button:focus:not(:active), .button.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.button:active, .button.is-active {
@@ -1611,8 +1532,7 @@ a.box:active {
.button.is-text[disabled] {
background-color: transparent;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-white {
@@ -1633,8 +1553,7 @@ a.box:active {
}
.button.is-white:focus:not(:active), .button.is-white.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.button.is-white:active, .button.is-white.is-active {
@@ -1646,8 +1565,7 @@ a.box:active {
.button.is-white[disabled] {
background-color: white;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-white.is-inverted {
@@ -1662,8 +1580,7 @@ a.box:active {
.button.is-white.is-inverted[disabled] {
background-color: #0a0a0a;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: white;
}
@@ -1690,8 +1607,7 @@ a.box:active {
.button.is-white.is-outlined[disabled] {
background-color: transparent;
border-color: white;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: white;
}
@@ -1709,8 +1625,7 @@ a.box:active {
.button.is-white.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #0a0a0a;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #0a0a0a;
}
@@ -1732,8 +1647,7 @@ a.box:active {
}
.button.is-black:focus:not(:active), .button.is-black.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
- box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}
.button.is-black:active, .button.is-black.is-active {
@@ -1745,8 +1659,7 @@ a.box:active {
.button.is-black[disabled] {
background-color: #0a0a0a;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-black.is-inverted {
@@ -1761,8 +1674,7 @@ a.box:active {
.button.is-black.is-inverted[disabled] {
background-color: white;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #0a0a0a;
}
@@ -1789,8 +1701,7 @@ a.box:active {
.button.is-black.is-outlined[disabled] {
background-color: transparent;
border-color: #0a0a0a;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #0a0a0a;
}
@@ -1808,8 +1719,7 @@ a.box:active {
.button.is-black.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: white;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: white;
}
@@ -1831,8 +1741,7 @@ a.box:active {
}
.button.is-light:focus:not(:active), .button.is-light.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
- box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}
.button.is-light:active, .button.is-light.is-active {
@@ -1844,8 +1753,7 @@ a.box:active {
.button.is-light[disabled] {
background-color: whitesmoke;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-light.is-inverted {
@@ -1860,8 +1768,7 @@ a.box:active {
.button.is-light.is-inverted[disabled] {
background-color: #363636;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: whitesmoke;
}
@@ -1888,8 +1795,7 @@ a.box:active {
.button.is-light.is-outlined[disabled] {
background-color: transparent;
border-color: whitesmoke;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: whitesmoke;
}
@@ -1907,8 +1813,7 @@ a.box:active {
.button.is-light.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #363636;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #363636;
}
@@ -1930,8 +1835,7 @@ a.box:active {
}
.button.is-dark:focus:not(:active), .button.is-dark.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
- box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}
.button.is-dark:active, .button.is-dark.is-active {
@@ -1943,8 +1847,7 @@ a.box:active {
.button.is-dark[disabled] {
background-color: #363636;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-dark.is-inverted {
@@ -1959,8 +1862,7 @@ a.box:active {
.button.is-dark.is-inverted[disabled] {
background-color: whitesmoke;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #363636;
}
@@ -1987,8 +1889,7 @@ a.box:active {
.button.is-dark.is-outlined[disabled] {
background-color: transparent;
border-color: #363636;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #363636;
}
@@ -2006,8 +1907,7 @@ a.box:active {
.button.is-dark.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: whitesmoke;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: whitesmoke;
}
@@ -2029,8 +1929,7 @@ a.box:active {
}
.button.is-primary:focus:not(:active), .button.is-primary.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
- box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}
.button.is-primary:active, .button.is-primary.is-active {
@@ -2042,8 +1941,7 @@ a.box:active {
.button.is-primary[disabled] {
background-color: #00d1b2;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-primary.is-inverted {
@@ -2058,8 +1956,7 @@ a.box:active {
.button.is-primary.is-inverted[disabled] {
background-color: #fff;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #00d1b2;
}
@@ -2086,8 +1983,7 @@ a.box:active {
.button.is-primary.is-outlined[disabled] {
background-color: transparent;
border-color: #00d1b2;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #00d1b2;
}
@@ -2105,8 +2001,7 @@ a.box:active {
.button.is-primary.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #fff;
}
@@ -2128,8 +2023,7 @@ a.box:active {
}
.button.is-link:focus:not(:active), .button.is-link.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.button.is-link:active, .button.is-link.is-active {
@@ -2141,8 +2035,7 @@ a.box:active {
.button.is-link[disabled] {
background-color: #3273dc;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-link.is-inverted {
@@ -2157,8 +2050,7 @@ a.box:active {
.button.is-link.is-inverted[disabled] {
background-color: #fff;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #3273dc;
}
@@ -2185,8 +2077,7 @@ a.box:active {
.button.is-link.is-outlined[disabled] {
background-color: transparent;
border-color: #3273dc;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #3273dc;
}
@@ -2204,8 +2095,7 @@ a.box:active {
.button.is-link.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #fff;
}
@@ -2227,8 +2117,7 @@ a.box:active {
}
.button.is-info:focus:not(:active), .button.is-info.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
- box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
}
.button.is-info:active, .button.is-info.is-active {
@@ -2240,8 +2129,7 @@ a.box:active {
.button.is-info[disabled] {
background-color: #209cee;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-info.is-inverted {
@@ -2256,8 +2144,7 @@ a.box:active {
.button.is-info.is-inverted[disabled] {
background-color: #fff;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #209cee;
}
@@ -2284,8 +2171,7 @@ a.box:active {
.button.is-info.is-outlined[disabled] {
background-color: transparent;
border-color: #209cee;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #209cee;
}
@@ -2303,8 +2189,7 @@ a.box:active {
.button.is-info.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #fff;
}
@@ -2326,8 +2211,7 @@ a.box:active {
}
.button.is-success:focus:not(:active), .button.is-success.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}
.button.is-success:active, .button.is-success.is-active {
@@ -2339,8 +2223,7 @@ a.box:active {
.button.is-success[disabled] {
background-color: #23d160;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-success.is-inverted {
@@ -2355,8 +2238,7 @@ a.box:active {
.button.is-success.is-inverted[disabled] {
background-color: #fff;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #23d160;
}
@@ -2383,8 +2265,7 @@ a.box:active {
.button.is-success.is-outlined[disabled] {
background-color: transparent;
border-color: #23d160;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #23d160;
}
@@ -2402,8 +2283,7 @@ a.box:active {
.button.is-success.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #fff;
}
@@ -2425,8 +2305,7 @@ a.box:active {
}
.button.is-warning:focus:not(:active), .button.is-warning.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}
.button.is-warning:active, .button.is-warning.is-active {
@@ -2438,8 +2317,7 @@ a.box:active {
.button.is-warning[disabled] {
background-color: #ffdd57;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-warning.is-inverted {
@@ -2454,8 +2332,7 @@ a.box:active {
.button.is-warning.is-inverted[disabled] {
background-color: rgba(0, 0, 0, 0.7);
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #ffdd57;
}
@@ -2482,8 +2359,7 @@ a.box:active {
.button.is-warning.is-outlined[disabled] {
background-color: transparent;
border-color: #ffdd57;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #ffdd57;
}
@@ -2501,8 +2377,7 @@ a.box:active {
.button.is-warning.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: rgba(0, 0, 0, 0.7);
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: rgba(0, 0, 0, 0.7);
}
@@ -2524,8 +2399,7 @@ a.box:active {
}
.button.is-danger:focus:not(:active), .button.is-danger.is-focused:not(:active) {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}
.button.is-danger:active, .button.is-danger.is-active {
@@ -2537,8 +2411,7 @@ a.box:active {
.button.is-danger[disabled] {
background-color: #ff3860;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.button.is-danger.is-inverted {
@@ -2553,8 +2426,7 @@ a.box:active {
.button.is-danger.is-inverted[disabled] {
background-color: #fff;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #ff3860;
}
@@ -2581,8 +2453,7 @@ a.box:active {
.button.is-danger.is-outlined[disabled] {
background-color: transparent;
border-color: #ff3860;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #ff3860;
}
@@ -2600,8 +2471,7 @@ a.box:active {
.button.is-danger.is-inverted.is-outlined[disabled] {
background-color: transparent;
border-color: #fff;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #fff;
}
@@ -2621,14 +2491,11 @@ a.box:active {
.button[disabled] {
background-color: white;
border-color: #dbdbdb;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
opacity: 0.5;
}
.button.is-fullwidth {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
width: 100%;
}
@@ -2649,8 +2516,7 @@ a.box:active {
background-color: whitesmoke;
border-color: #dbdbdb;
color: #7a7a7a;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
pointer-events: none;
}
@@ -2661,17 +2527,10 @@ a.box:active {
}
.buttons {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-wrap: wrap;
+ justify-content: flex-start;
}
.buttons .button {
@@ -2718,21 +2577,15 @@ a.box:active {
}
.buttons.has-addons .button.is-expanded {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
.buttons.is-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.buttons.is-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.container {
@@ -2965,8 +2818,7 @@ a.box:active {
background-color: white;
border-color: #dbdbdb;
color: #363636;
- -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
- box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
max-width: 100%;
width: 100%;
}
@@ -3003,16 +2855,14 @@ a.box:active {
.textarea:active,
.textarea.is-active {
border-color: #3273dc;
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.input[disabled],
.textarea[disabled] {
background-color: whitesmoke;
border-color: whitesmoke;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #7a7a7a;
}
@@ -3038,8 +2888,7 @@ a.box:active {
.input[readonly],
.textarea[readonly] {
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.input.is-white,
@@ -3052,8 +2901,7 @@ a.box:active {
.textarea.is-white.is-focused,
.textarea.is-white:active,
.textarea.is-white.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.input.is-black,
@@ -3066,8 +2914,7 @@ a.box:active {
.textarea.is-black.is-focused,
.textarea.is-black:active,
.textarea.is-black.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
- box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}
.input.is-light,
@@ -3080,8 +2927,7 @@ a.box:active {
.textarea.is-light.is-focused,
.textarea.is-light:active,
.textarea.is-light.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
- box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}
.input.is-dark,
@@ -3094,8 +2940,7 @@ a.box:active {
.textarea.is-dark.is-focused,
.textarea.is-dark:active,
.textarea.is-dark.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
- box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}
.input.is-primary,
@@ -3108,8 +2953,7 @@ a.box:active {
.textarea.is-primary.is-focused,
.textarea.is-primary:active,
.textarea.is-primary.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
- box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}
.input.is-link,
@@ -3122,8 +2966,7 @@ a.box:active {
.textarea.is-link.is-focused,
.textarea.is-link:active,
.textarea.is-link.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.input.is-info,
@@ -3136,8 +2979,7 @@ a.box:active {
.textarea.is-info.is-focused,
.textarea.is-info:active,
.textarea.is-info.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
- box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
}
.input.is-success,
@@ -3150,8 +2992,7 @@ a.box:active {
.textarea.is-success.is-focused,
.textarea.is-success:active,
.textarea.is-success.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}
.input.is-warning,
@@ -3164,8 +3005,7 @@ a.box:active {
.textarea.is-warning.is-focused,
.textarea.is-warning:active,
.textarea.is-warning.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}
.input.is-danger,
@@ -3178,8 +3018,7 @@ a.box:active {
.textarea.is-danger.is-focused,
.textarea.is-danger:active,
.textarea.is-danger.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}
.input.is-small,
@@ -3219,8 +3058,7 @@ a.box:active {
.input.is-static {
background-color: transparent;
border-color: transparent;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
padding-left: 0;
padding-right: 0;
}
@@ -3329,15 +3167,13 @@ a.box:active {
.select select:focus, .select select.is-focused, .select select:active, .select select.is-active {
border-color: #3273dc;
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.select select[disabled] {
background-color: whitesmoke;
border-color: whitesmoke;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #7a7a7a;
}
@@ -3395,8 +3231,7 @@ a.box:active {
}
.select.is-white select:focus, .select.is-white select.is-focused, .select.is-white select:active, .select.is-white select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 255, 255, 0.25);
}
.select.is-black:not(:hover)::after {
@@ -3412,8 +3247,7 @@ a.box:active {
}
.select.is-black select:focus, .select.is-black select.is-focused, .select.is-black select:active, .select.is-black select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
- box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(10, 10, 10, 0.25);
}
.select.is-light:not(:hover)::after {
@@ -3429,8 +3263,7 @@ a.box:active {
}
.select.is-light select:focus, .select.is-light select.is-focused, .select.is-light select:active, .select.is-light select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
- box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(245, 245, 245, 0.25);
}
.select.is-dark:not(:hover)::after {
@@ -3446,8 +3279,7 @@ a.box:active {
}
.select.is-dark select:focus, .select.is-dark select.is-focused, .select.is-dark select:active, .select.is-dark select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
- box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(54, 54, 54, 0.25);
}
.select.is-primary:not(:hover)::after {
@@ -3463,8 +3295,7 @@ a.box:active {
}
.select.is-primary select:focus, .select.is-primary select.is-focused, .select.is-primary select:active, .select.is-primary select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
- box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(0, 209, 178, 0.25);
}
.select.is-link:not(:hover)::after {
@@ -3480,8 +3311,7 @@ a.box:active {
}
.select.is-link select:focus, .select.is-link select.is-focused, .select.is-link select:active, .select.is-link select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.select.is-info:not(:hover)::after {
@@ -3497,8 +3327,7 @@ a.box:active {
}
.select.is-info select:focus, .select.is-info select.is-focused, .select.is-info select:active, .select.is-info select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
- box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(32, 156, 238, 0.25);
}
.select.is-success:not(:hover)::after {
@@ -3514,8 +3343,7 @@ a.box:active {
}
.select.is-success select:focus, .select.is-success select.is-focused, .select.is-success select:active, .select.is-success select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(35, 209, 96, 0.25);
}
.select.is-warning:not(:hover)::after {
@@ -3531,8 +3359,7 @@ a.box:active {
}
.select.is-warning select:focus, .select.is-warning select.is-focused, .select.is-warning select:active, .select.is-warning select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 221, 87, 0.25);
}
.select.is-danger:not(:hover)::after {
@@ -3548,8 +3375,7 @@ a.box:active {
}
.select.is-danger select:focus, .select.is-danger select.is-focused, .select.is-danger select:active, .select.is-danger select.is-active {
- -webkit-box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
- box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(255, 56, 96, 0.25);
}
.select.is-small {
@@ -3582,8 +3408,7 @@ a.box:active {
position: absolute;
right: 0.625em;
top: 0.625em;
- -webkit-transform: none;
- transform: none;
+ transform: none;
}
.select.is-loading.is-small:after {
@@ -3599,15 +3424,9 @@ a.box:active {
}
.file {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
position: relative;
}
@@ -3625,8 +3444,7 @@ a.box:active {
.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
- box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
+ box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
color: #0a0a0a;
}
@@ -3650,8 +3468,7 @@ a.box:active {
.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
- box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
+ box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
color: white;
}
@@ -3675,8 +3492,7 @@ a.box:active {
.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
- box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
+ box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
color: #363636;
}
@@ -3700,8 +3516,7 @@ a.box:active {
.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
- box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
+ box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
color: whitesmoke;
}
@@ -3725,8 +3540,7 @@ a.box:active {
.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
- box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
+ box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
color: #fff;
}
@@ -3750,8 +3564,7 @@ a.box:active {
.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
- box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
+ box-shadow: 0 0 0.5em rgba(50, 115, 220, 0.25);
color: #fff;
}
@@ -3775,8 +3588,7 @@ a.box:active {
.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
- box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
+ box-shadow: 0 0 0.5em rgba(32, 156, 238, 0.25);
color: #fff;
}
@@ -3800,8 +3612,7 @@ a.box:active {
.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
- box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
+ box-shadow: 0 0 0.5em rgba(35, 209, 96, 0.25);
color: #fff;
}
@@ -3825,8 +3636,7 @@ a.box:active {
.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
- box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
+ box-shadow: 0 0 0.5em rgba(255, 221, 87, 0.25);
color: rgba(0, 0, 0, 0.7);
}
@@ -3850,8 +3660,7 @@ a.box:active {
.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
border-color: transparent;
- -webkit-box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
- box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
+ box-shadow: 0 0 0.5em rgba(255, 56, 96, 0.25);
color: #fff;
}
@@ -3900,17 +3709,11 @@ a.box:active {
}
.file.is-boxed .file-label {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
}
.file.is-boxed .file-cta {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
height: auto;
padding: 1em 3em;
}
@@ -3950,9 +3753,7 @@ a.box:active {
}
.file.is-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.file.is-fullwidth .file-label {
@@ -3960,16 +3761,12 @@ a.box:active {
}
.file.is-fullwidth .file-name {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
max-width: none;
}
.file.is-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.file.is-right .file-cta {
@@ -3979,22 +3776,14 @@ a.box:active {
.file.is-right .file-name {
border-radius: 4px 0 0 4px;
border-width: 1px 0 1px 1px;
- -webkit-box-ordinal-group: 0;
- -ms-flex-order: -1;
- order: -1;
+ order: -1;
}
.file-label {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
cursor: pointer;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
overflow: hidden;
position: relative;
}
@@ -4053,16 +3842,10 @@ a.box:active {
}
.file-icon {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
height: 1em;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-right: 0.5em;
width: 1em;
}
@@ -4145,12 +3928,8 @@ a.box:active {
}
.field.has-addons {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
}
.field.has-addons .control:not(:last-child) {
@@ -4210,43 +3989,29 @@ a.box:active {
}
.field.has-addons .control.is-expanded {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
.field.has-addons.has-addons-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.field.has-addons.has-addons-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.field.has-addons.has-addons-fullwidth .control {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
}
.field.is-grouped {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
}
.field.is-grouped > .control {
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-shrink: 0;
}
.field.is-grouped > .control:not(:last-child) {
@@ -4255,28 +4020,20 @@ a.box:active {
}
.field.is-grouped > .control.is-expanded {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.field.is-grouped.is-grouped-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.field.is-grouped.is-grouped-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.field.is-grouped.is-grouped-multiline {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.field.is-grouped.is-grouped-multiline > .control:last-child, .field.is-grouped.is-grouped-multiline > .control:not(:last-child) {
@@ -4293,8 +4050,6 @@ a.box:active {
@media screen and (min-width: 769px), print {
.field.is-horizontal {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
}
@@ -4311,13 +4066,9 @@ a.box:active {
@media screen and (min-width: 769px), print {
.field-label {
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-basis: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
margin-right: 1.5rem;
text-align: right;
}
@@ -4344,28 +4095,19 @@ a.box:active {
@media screen and (min-width: 769px), print {
.field-body {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 5;
- -ms-flex-positive: 5;
- flex-grow: 5;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-basis: 0;
+ flex-grow: 5;
+ flex-shrink: 1;
}
.field-body .field {
margin-bottom: 0;
}
.field-body > .field {
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-shrink: 1;
}
.field-body > .field:not(.is-narrow) {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
.field-body > .field:not(:last-child) {
margin-right: 0.75rem;
@@ -4492,15 +4234,9 @@ a.box:active {
}
.icon {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
+ align-items: center;
display: inline-flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
height: 1.5rem;
width: 1.5rem;
}
@@ -5062,17 +4798,10 @@ a.box:active {
}
.tags {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-wrap: wrap;
+ justify-content: flex-start;
}
.tags .tag {
@@ -5106,9 +4835,7 @@ a.box:active {
}
.tags.is-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.tags.is-centered .tag {
@@ -5117,9 +4844,7 @@ a.box:active {
}
.tags.is-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.tags.is-right .tag:not(:first-child) {
@@ -5131,20 +4856,14 @@ a.box:active {
}
.tag:not(body) {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
background-color: whitesmoke;
border-radius: 4px;
color: #4a4a4a;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
display: inline-flex;
font-size: 0.75rem;
height: 2em;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
line-height: 1.5;
padding-left: 0.75em;
padding-right: 0.75em;
@@ -5243,10 +4962,8 @@ a.box:active {
left: 50%;
position: absolute;
top: 50%;
- -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
- transform: translateX(-50%) translateY(-50%) rotate(45deg);
- -webkit-transform-origin: center center;
- transform-origin: center center;
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
+ transform-origin: center center;
}
.tag:not(body).is-delete::before {
@@ -5415,19 +5132,13 @@ a.tag:hover {
}
.number {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
background-color: whitesmoke;
border-radius: 290486px;
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
display: inline-flex;
font-size: 1.25rem;
height: 2em;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-right: 1.5rem;
min-width: 2.5em;
padding: 0.25rem 0.5rem;
@@ -5441,16 +5152,10 @@ a.tag:hover {
}
.breadcrumb a {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
color: #3273dc;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding: 0 0.75em;
}
@@ -5459,11 +5164,7 @@ a.tag:hover {
}
.breadcrumb li {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
}
@@ -5484,17 +5185,10 @@ a.tag:hover {
.breadcrumb ul,
.breadcrumb ol {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-wrap: wrap;
+ justify-content: flex-start;
}
.breadcrumb .icon:first-child {
@@ -5506,15 +5200,11 @@ a.tag:hover {
}
.breadcrumb.is-centered ol {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.breadcrumb.is-right ol {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.breadcrumb.is-small {
@@ -5547,8 +5237,7 @@ a.tag:hover {
.card {
background-color: white;
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
color: #4a4a4a;
max-width: 100%;
position: relative;
@@ -5556,48 +5245,29 @@ a.tag:hover {
.card-header {
background-color: none;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- -webkit-box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
- box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
+ box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
display: flex;
}
.card-header-title {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
color: #363636;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
font-weight: 700;
padding: 0.75rem;
}
.card-header-title.is-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.card-header-icon {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
cursor: pointer;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding: 0.75rem;
}
@@ -5614,31 +5284,17 @@ a.tag:hover {
.card-footer {
background-color: none;
border-top: 1px solid #dbdbdb;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
}
.card-footer-item {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ flex-basis: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
+ justify-content: center;
padding: 0.75rem;
}
@@ -5651,8 +5307,6 @@ a.tag:hover {
}
.dropdown {
- display: -webkit-inline-box;
- display: -ms-inline-flexbox;
display: inline-flex;
position: relative;
vertical-align: top;
@@ -5687,8 +5341,7 @@ a.tag:hover {
.dropdown-content {
background-color: white;
border-radius: 4px;
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
padding-bottom: 0.5rem;
padding-top: 0.5rem;
}
@@ -5726,12 +5379,8 @@ a.dropdown-item.is-active {
}
.level {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ align-items: center;
+ justify-content: space-between;
}
.level code {
@@ -5744,15 +5393,11 @@ a.dropdown-item.is-active {
}
.level.is-mobile {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.level.is-mobile .level-left,
.level.is-mobile .level-right {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
@@ -5769,41 +5414,25 @@ a.dropdown-item.is-active {
}
.level.is-mobile .level-item:not(.is-narrow) {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
@media screen and (min-width: 769px), print {
.level {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.level > .level-item:not(.is-narrow) {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
}
.level-item {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-preferred-size: auto;
- flex-basis: auto;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ flex-basis: auto;
+ flex-grow: 0;
+ flex-shrink: 0;
+ justify-content: center;
}
.level-item .title,
@@ -5819,20 +5448,14 @@ a.dropdown-item.is-active {
.level-left,
.level-right {
- -ms-flex-preferred-size: auto;
- flex-basis: auto;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-basis: auto;
+ flex-grow: 0;
+ flex-shrink: 0;
}
.level-left .level-item.is-flexible,
.level-right .level-item.is-flexible {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
@media screen and (min-width: 769px), print {
@@ -5843,12 +5466,8 @@ a.dropdown-item.is-active {
}
.level-left {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ align-items: center;
+ justify-content: flex-start;
}
@media screen and (max-width: 768px) {
@@ -5859,35 +5478,23 @@ a.dropdown-item.is-active {
@media screen and (min-width: 769px), print {
.level-left {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
}
.level-right {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ align-items: center;
+ justify-content: flex-end;
}
@media screen and (min-width: 769px), print {
.level-right {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
}
.media {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
text-align: left;
}
@@ -5898,8 +5505,6 @@ a.dropdown-item.is-active {
.media .media {
border-top: 1px solid rgba(219, 219, 219, 0.5);
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
padding-top: 0.75rem;
}
@@ -5930,13 +5535,9 @@ a.dropdown-item.is-active {
.media-left,
.media-right {
- -ms-flex-preferred-size: auto;
- flex-basis: auto;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-basis: auto;
+ flex-grow: 0;
+ flex-shrink: 0;
}
.media-left {
@@ -5948,13 +5549,9 @@ a.dropdown-item.is-active {
}
.media-content {
- -ms-flex-preferred-size: auto;
- flex-basis: auto;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-basis: auto;
+ flex-grow: 1;
+ flex-shrink: 1;
text-align: left;
}
@@ -6184,30 +5781,21 @@ a.dropdown-item.is-active {
}
.message-header {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
background-color: #4a4a4a;
border-radius: 4px 4px 0 0;
color: #fff;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
font-weight: 700;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
line-height: 1.25;
padding: 0.75em 1em;
position: relative;
}
.message-header .delete {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
margin-left: 0.75em;
}
@@ -6236,21 +5824,15 @@ a.dropdown-item.is-active {
}
.modal {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
display: none;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
overflow: hidden;
position: fixed;
z-index: 40;
}
.modal.is-active {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
@@ -6286,31 +5868,19 @@ a.dropdown-item.is-active {
}
.modal-card {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
max-height: calc(100vh - 40px);
overflow: hidden;
}
.modal-card-head,
.modal-card-foot {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
background-color: whitesmoke;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-shrink: 0;
+ justify-content: flex-start;
padding: 20px;
position: relative;
}
@@ -6323,11 +5893,8 @@ a.dropdown-item.is-active {
.modal-card-title {
color: #363636;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
font-size: 1.5rem;
line-height: 1;
}
@@ -6345,19 +5912,15 @@ a.dropdown-item.is-active {
.modal-card-body {
-webkit-overflow-scrolling: touch;
background-color: white;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
overflow: auto;
padding: 20px;
}
.navbar {
background-color: white;
- -webkit-box-shadow: 0 2px 0 0 whitesmoke;
- box-shadow: 0 2px 0 0 whitesmoke;
+ box-shadow: 0 2px 0 0 whitesmoke;
min-height: 3.25rem;
position: relative;
z-index: 30;
@@ -6894,19 +6457,14 @@ a.dropdown-item.is-active {
}
.navbar > .container {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
min-height: 3.25rem;
width: 100%;
}
.navbar.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);
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-bottom, .navbar.is-fixed-top {
@@ -6921,8 +6479,7 @@ a.dropdown-item.is-active {
}
.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);
+ box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top {
@@ -6941,14 +6498,9 @@ body.has-navbar-fixed-bottom {
.navbar-brand,
.navbar-tabs {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-shrink: 0;
min-height: 3.25rem;
}
@@ -6978,16 +6530,10 @@ body.has-navbar-fixed-bottom {
height: 1px;
left: calc(50% - 8px);
position: absolute;
- -webkit-transform-origin: center;
- transform-origin: center;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: background-color, opacity, -webkit-transform;
- transition-property: background-color, opacity, -webkit-transform;
+ transform-origin: center;
+ transition-duration: 86ms;
transition-property: background-color, opacity, transform;
- transition-property: background-color, opacity, transform, -webkit-transform;
- -webkit-transition-timing-function: ease-out;
- transition-timing-function: ease-out;
+ transition-timing-function: ease-out;
width: 16px;
}
@@ -7008,8 +6554,7 @@ body.has-navbar-fixed-bottom {
}
.navbar-burger.is-active span:nth-child(1) {
- -webkit-transform: translateY(5px) rotate(45deg);
- transform: translateY(5px) rotate(45deg);
+ transform: translateY(5px) rotate(45deg);
}
.navbar-burger.is-active span:nth-child(2) {
@@ -7017,8 +6562,7 @@ body.has-navbar-fixed-bottom {
}
.navbar-burger.is-active span:nth-child(3) {
- -webkit-transform: translateY(-5px) rotate(-45deg);
- transform: translateY(-5px) rotate(-45deg);
+ transform: translateY(-5px) rotate(-45deg);
}
.navbar-menu {
@@ -7054,11 +6598,8 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar-item {
display: block;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
}
.navbar-item img {
@@ -7070,11 +6611,8 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar-item.is-expanded {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.navbar-item.is-tab {
@@ -7098,11 +6636,8 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar-content {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.navbar-link {
@@ -7140,11 +6675,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar-brand .navbar-item,
.navbar-tabs .navbar-item {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
}
.navbar-link::after {
@@ -7152,8 +6683,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar-menu {
background-color: white;
- -webkit-box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
- box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
padding: 0.5rem 0;
}
.navbar-menu.is-active {
@@ -7169,8 +6699,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
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);
+ box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top-touch {
top: 0;
@@ -7195,11 +6724,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar-menu,
.navbar-start,
.navbar-end {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
}
.navbar {
@@ -7210,9 +6735,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar.is-spaced .navbar-start,
.navbar.is-spaced .navbar-end {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
}
.navbar.is-spaced a.navbar-item,
.navbar.is-spaced .navbar-link {
@@ -7239,34 +6762,24 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.navbar-item,
.navbar-link {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
}
.navbar-item {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.navbar-item.has-dropdown {
- -webkit-box-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);
+ transform: rotate(135deg) translate(0.25em, -0.25em);
}
.navbar-item.has-dropdown-up .navbar-dropdown {
border-bottom: 2px solid #dbdbdb;
border-radius: 6px 6px 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);
+ 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 {
@@ -7275,26 +6788,18 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar.is-spaced .navbar-item.is-active .navbar-dropdown, .navbar-item.is-active .navbar-dropdown.is-boxed, .navbar.is-spaced .navbar-item.is-hoverable:hover .navbar-dropdown, .navbar-item.is-hoverable:hover .navbar-dropdown.is-boxed {
opacity: 1;
pointer-events: auto;
- -webkit-transform: translateY(0);
- transform: translateY(0);
+ transform: translateY(0);
}
.navbar-menu {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
}
.navbar-start {
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
margin-right: auto;
}
.navbar-end {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
margin-left: auto;
}
.navbar-dropdown {
@@ -7302,8 +6807,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
border-bottom-left-radius: 6px;
border-bottom-right-radius: 6px;
border-top: 2px solid #dbdbdb;
- -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
- box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1);
display: none;
font-size: 0.875rem;
left: 0;
@@ -7330,20 +6834,14 @@ a.navbar-item:hover, a.navbar-item.is-active,
.navbar.is-spaced .navbar-dropdown, .navbar-dropdown.is-boxed {
border-radius: 6px;
border-top: none;
- -webkit-box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 8px 8px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
display: block;
opacity: 0;
pointer-events: none;
top: calc(100% + (-4px));
- -webkit-transform: translateY(-5px);
- transform: translateY(-5px);
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: opacity, -webkit-transform;
- transition-property: opacity, -webkit-transform;
+ transform: translateY(-5px);
+ transition-duration: 86ms;
transition-property: opacity, transform;
- transition-property: opacity, transform, -webkit-transform;
}
.navbar-dropdown.is-right {
left: auto;
@@ -7370,8 +6868,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
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);
+ box-shadow: 0 -2px 3px rgba(10, 10, 10, 0.1);
}
.navbar.is-fixed-top-desktop {
top: 0;
@@ -7435,15 +6932,9 @@ a.navbar-item:hover, a.navbar-item.is-active,
.pagination,
.pagination-list {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
text-align: center;
}
@@ -7454,9 +6945,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
font-size: 1em;
padding-left: 0.5em;
padding-right: 0.5em;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin: 0.25rem;
text-align: center;
}
@@ -7485,8 +6974,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
.pagination-previous:active,
.pagination-next:active,
.pagination-link:active {
- -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
- box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2);
}
.pagination-previous[disabled],
@@ -7494,8 +6982,7 @@ a.navbar-item:hover, a.navbar-item.is-active,
.pagination-link[disabled] {
background-color: #dbdbdb;
border-color: #dbdbdb;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
color: #7a7a7a;
opacity: 0.5;
}
@@ -7519,96 +7006,59 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.pagination-list {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
.pagination {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.pagination-previous,
.pagination-next {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.pagination-list li {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
}
@media screen and (min-width: 769px), print {
.pagination-list {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
- -webkit-box-ordinal-group: 2;
- -ms-flex-order: 1;
- order: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
+ justify-content: flex-start;
+ order: 1;
}
.pagination-previous {
- -webkit-box-ordinal-group: 3;
- -ms-flex-order: 2;
- order: 2;
+ order: 2;
}
.pagination-next {
- -webkit-box-ordinal-group: 4;
- -ms-flex-order: 3;
- order: 3;
+ order: 3;
}
.pagination {
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
}
.pagination.is-centered .pagination-previous {
- -webkit-box-ordinal-group: 2;
- -ms-flex-order: 1;
- order: 1;
+ order: 1;
}
.pagination.is-centered .pagination-list {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- -webkit-box-ordinal-group: 3;
- -ms-flex-order: 2;
- order: 2;
+ justify-content: center;
+ order: 2;
}
.pagination.is-centered .pagination-next {
- -webkit-box-ordinal-group: 4;
- -ms-flex-order: 3;
- order: 3;
+ order: 3;
}
.pagination.is-right .pagination-previous {
- -webkit-box-ordinal-group: 2;
- -ms-flex-order: 1;
- order: 1;
+ order: 1;
}
.pagination.is-right .pagination-next {
- -webkit-box-ordinal-group: 3;
- -ms-flex-order: 2;
- order: 2;
+ order: 2;
}
.pagination.is-right .pagination-list {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
- -webkit-box-ordinal-group: 4;
- -ms-flex-order: 3;
- order: 3;
+ justify-content: flex-end;
+ order: 3;
}
}
@@ -7645,16 +7095,10 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.panel-tabs {
- -webkit-box-align: end;
- -ms-flex-align: end;
- align-items: flex-end;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-end;
display: flex;
font-size: 0.875em;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.panel-tabs a {
@@ -7677,16 +7121,10 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.panel-block {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
color: #363636;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
padding: 0.5em 0.75em;
}
@@ -7695,17 +7133,13 @@ a.navbar-item:hover, a.navbar-item.is-active,
}
.panel-block > .control {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
width: 100%;
}
.panel-block.is-wrapped {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.panel-block.is-active {
@@ -7746,35 +7180,23 @@ label.panel-block:hover {
.tabs {
-webkit-overflow-scrolling: touch;
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
font-size: 1rem;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
overflow: hidden;
overflow-x: auto;
white-space: nowrap;
}
.tabs a {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
border-bottom-color: #dbdbdb;
border-bottom-style: solid;
border-bottom-width: 1px;
color: #4a4a4a;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-bottom: -1px;
padding: 0.5em 1em;
vertical-align: top;
@@ -7795,23 +7217,14 @@ label.panel-block:hover {
}
.tabs ul {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
border-bottom-color: #dbdbdb;
border-bottom-style: solid;
border-bottom-width: 1px;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-grow: 1;
+ flex-shrink: 0;
+ justify-content: flex-start;
}
.tabs ul.is-left {
@@ -7819,20 +7232,14 @@ label.panel-block:hover {
}
.tabs ul.is-center {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ flex: none;
+ justify-content: center;
padding-left: 0.75em;
padding-right: 0.75em;
}
.tabs ul.is-right {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
padding-left: 0.75em;
}
@@ -7845,15 +7252,11 @@ label.panel-block:hover {
}
.tabs.is-centered ul {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.tabs.is-right ul {
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.tabs.is-boxed a {
@@ -7873,11 +7276,8 @@ label.panel-block:hover {
}
.tabs.is-fullwidth li {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
}
.tabs.is-toggle a {
@@ -7943,89 +7343,63 @@ label.panel-block:hover {
.column {
display: block;
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-basis: 0;
+ flex-grow: 1;
+ flex-shrink: 1;
padding: 0.75rem;
}
.columns.is-mobile > .column.is-narrow {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.columns.is-mobile > .column.is-full {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.columns.is-mobile > .column.is-three-quarters {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.columns.is-mobile > .column.is-two-thirds {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.columns.is-mobile > .column.is-half {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.columns.is-mobile > .column.is-one-third {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.columns.is-mobile > .column.is-one-quarter {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.columns.is-mobile > .column.is-one-fifth {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.columns.is-mobile > .column.is-two-fifths {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.columns.is-mobile > .column.is-three-fifths {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.columns.is-mobile > .column.is-four-fifths {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
@@ -8066,9 +7440,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-1 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
@@ -8077,9 +7449,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-2 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
@@ -8088,9 +7458,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-3 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
@@ -8099,9 +7467,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-4 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
@@ -8110,9 +7476,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-5 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
@@ -8121,9 +7485,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-6 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
@@ -8132,9 +7494,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-7 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
@@ -8143,9 +7503,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-8 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
@@ -8154,9 +7512,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-9 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
@@ -8165,9 +7521,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-10 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
@@ -8176,9 +7530,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-11 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
@@ -8187,9 +7539,7 @@ label.panel-block:hover {
}
.columns.is-mobile > .column.is-12 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
@@ -8199,68 +7549,46 @@ label.panel-block:hover {
@media screen and (max-width: 768px) {
.column.is-narrow-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters-mobile {
@@ -8291,108 +7619,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1-mobile {
margin-left: 8.33333%;
}
.column.is-2-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2-mobile {
margin-left: 16.66667%;
}
.column.is-3-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3-mobile {
margin-left: 25%;
}
.column.is-4-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4-mobile {
margin-left: 33.33333%;
}
.column.is-5-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5-mobile {
margin-left: 41.66667%;
}
.column.is-6-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6-mobile {
margin-left: 50%;
}
.column.is-7-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7-mobile {
margin-left: 58.33333%;
}
.column.is-8-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8-mobile {
margin-left: 66.66667%;
}
.column.is-9-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9-mobile {
margin-left: 75%;
}
.column.is-10-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10-mobile {
margin-left: 83.33333%;
}
.column.is-11-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11-mobile {
margin-left: 91.66667%;
}
.column.is-12-mobile {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12-mobile {
@@ -8402,68 +7706,46 @@ label.panel-block:hover {
@media screen and (min-width: 769px), print {
.column.is-narrow, .column.is-narrow-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full, .column.is-full-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters, .column.is-three-quarters-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds, .column.is-two-thirds-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half, .column.is-half-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third, .column.is-one-third-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter, .column.is-one-quarter-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth, .column.is-one-fifth-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths, .column.is-two-fifths-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths, .column.is-three-fifths-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths, .column.is-four-fifths-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters, .column.is-offset-three-quarters-tablet {
@@ -8494,108 +7776,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1, .column.is-1-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1, .column.is-offset-1-tablet {
margin-left: 8.33333%;
}
.column.is-2, .column.is-2-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2, .column.is-offset-2-tablet {
margin-left: 16.66667%;
}
.column.is-3, .column.is-3-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3, .column.is-offset-3-tablet {
margin-left: 25%;
}
.column.is-4, .column.is-4-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4, .column.is-offset-4-tablet {
margin-left: 33.33333%;
}
.column.is-5, .column.is-5-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5, .column.is-offset-5-tablet {
margin-left: 41.66667%;
}
.column.is-6, .column.is-6-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6, .column.is-offset-6-tablet {
margin-left: 50%;
}
.column.is-7, .column.is-7-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7, .column.is-offset-7-tablet {
margin-left: 58.33333%;
}
.column.is-8, .column.is-8-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8, .column.is-offset-8-tablet {
margin-left: 66.66667%;
}
.column.is-9, .column.is-9-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9, .column.is-offset-9-tablet {
margin-left: 75%;
}
.column.is-10, .column.is-10-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10, .column.is-offset-10-tablet {
margin-left: 83.33333%;
}
.column.is-11, .column.is-11-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11, .column.is-offset-11-tablet {
margin-left: 91.66667%;
}
.column.is-12, .column.is-12-tablet {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12, .column.is-offset-12-tablet {
@@ -8605,68 +7863,46 @@ label.panel-block:hover {
@media screen and (max-width: 1087px) {
.column.is-narrow-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters-touch {
@@ -8697,108 +7933,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1-touch {
margin-left: 8.33333%;
}
.column.is-2-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2-touch {
margin-left: 16.66667%;
}
.column.is-3-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3-touch {
margin-left: 25%;
}
.column.is-4-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4-touch {
margin-left: 33.33333%;
}
.column.is-5-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5-touch {
margin-left: 41.66667%;
}
.column.is-6-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6-touch {
margin-left: 50%;
}
.column.is-7-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7-touch {
margin-left: 58.33333%;
}
.column.is-8-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8-touch {
margin-left: 66.66667%;
}
.column.is-9-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9-touch {
margin-left: 75%;
}
.column.is-10-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10-touch {
margin-left: 83.33333%;
}
.column.is-11-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11-touch {
margin-left: 91.66667%;
}
.column.is-12-touch {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12-touch {
@@ -8808,68 +8020,46 @@ label.panel-block:hover {
@media screen and (min-width: 1088px) {
.column.is-narrow-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters-desktop {
@@ -8900,108 +8090,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1-desktop {
margin-left: 8.33333%;
}
.column.is-2-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2-desktop {
margin-left: 16.66667%;
}
.column.is-3-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3-desktop {
margin-left: 25%;
}
.column.is-4-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4-desktop {
margin-left: 33.33333%;
}
.column.is-5-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5-desktop {
margin-left: 41.66667%;
}
.column.is-6-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6-desktop {
margin-left: 50%;
}
.column.is-7-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7-desktop {
margin-left: 58.33333%;
}
.column.is-8-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8-desktop {
margin-left: 66.66667%;
}
.column.is-9-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9-desktop {
margin-left: 75%;
}
.column.is-10-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10-desktop {
margin-left: 83.33333%;
}
.column.is-11-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11-desktop {
margin-left: 91.66667%;
}
.column.is-12-desktop {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12-desktop {
@@ -9011,68 +8177,46 @@ label.panel-block:hover {
@media screen and (min-width: 1280px) {
.column.is-narrow-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters-widescreen {
@@ -9103,108 +8247,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1-widescreen {
margin-left: 8.33333%;
}
.column.is-2-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2-widescreen {
margin-left: 16.66667%;
}
.column.is-3-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3-widescreen {
margin-left: 25%;
}
.column.is-4-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4-widescreen {
margin-left: 33.33333%;
}
.column.is-5-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5-widescreen {
margin-left: 41.66667%;
}
.column.is-6-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6-widescreen {
margin-left: 50%;
}
.column.is-7-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7-widescreen {
margin-left: 58.33333%;
}
.column.is-8-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8-widescreen {
margin-left: 66.66667%;
}
.column.is-9-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9-widescreen {
margin-left: 75%;
}
.column.is-10-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10-widescreen {
margin-left: 83.33333%;
}
.column.is-11-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11-widescreen {
margin-left: 91.66667%;
}
.column.is-12-widescreen {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12-widescreen {
@@ -9214,68 +8334,46 @@ label.panel-block:hover {
@media screen and (min-width: 1472px) {
.column.is-narrow-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
}
.column.is-full-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-three-quarters-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-two-thirds-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.6666%;
}
.column.is-half-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-one-third-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.3333%;
}
.column.is-one-quarter-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-one-fifth-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 20%;
}
.column.is-two-fifths-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 40%;
}
.column.is-three-fifths-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 60%;
}
.column.is-four-fifths-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 80%;
}
.column.is-offset-three-quarters-fullhd {
@@ -9306,108 +8404,84 @@ label.panel-block:hover {
margin-left: 80%;
}
.column.is-1-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.column.is-offset-1-fullhd {
margin-left: 8.33333%;
}
.column.is-2-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.column.is-offset-2-fullhd {
margin-left: 16.66667%;
}
.column.is-3-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.column.is-offset-3-fullhd {
margin-left: 25%;
}
.column.is-4-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.column.is-offset-4-fullhd {
margin-left: 33.33333%;
}
.column.is-5-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.column.is-offset-5-fullhd {
margin-left: 41.66667%;
}
.column.is-6-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.column.is-offset-6-fullhd {
margin-left: 50%;
}
.column.is-7-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.column.is-offset-7-fullhd {
margin-left: 58.33333%;
}
.column.is-8-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.column.is-offset-8-fullhd {
margin-left: 66.66667%;
}
.column.is-9-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.column.is-offset-9-fullhd {
margin-left: 75%;
}
.column.is-10-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.column.is-offset-10-fullhd {
margin-left: 83.33333%;
}
.column.is-11-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.column.is-offset-11-fullhd {
margin-left: 91.66667%;
}
.column.is-12-fullhd {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
.column.is-offset-12-fullhd {
@@ -9430,9 +8504,7 @@ label.panel-block:hover {
}
.columns.is-centered {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.columns.is-gapless {
@@ -9455,34 +8527,25 @@ label.panel-block:hover {
}
.columns.is-mobile {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.columns.is-multiline {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.columns.is-vcentered {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
}
@media screen and (min-width: 769px), print {
.columns:not(.is-desktop) {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
}
@media screen and (min-width: 1088px) {
.columns.is-desktop {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
}
@@ -9535,19 +8598,11 @@ label.panel-block:hover {
}
.tile {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
+ align-items: stretch;
display: block;
- -ms-flex-preferred-size: 0;
- flex-basis: 0;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
- min-height: -webkit-min-content;
- min-height: -moz-min-content;
+ flex-basis: 0;
+ flex-grow: 1;
+ flex-shrink: 1;
min-height: min-content;
}
@@ -9574,10 +8629,7 @@ label.panel-block:hover {
}
.tile.is-vertical {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
}
.tile.is-vertical > .tile.is-child:not(:last-child) {
@@ -9586,98 +8638,63 @@ label.panel-block:hover {
@media screen and (min-width: 769px), print {
.tile:not(.is-child) {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.tile.is-1 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 8.33333%;
}
.tile.is-2 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 16.66667%;
}
.tile.is-3 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 25%;
}
.tile.is-4 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 33.33333%;
}
.tile.is-5 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 41.66667%;
}
.tile.is-6 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 50%;
}
.tile.is-7 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 58.33333%;
}
.tile.is-8 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 66.66667%;
}
.tile.is-9 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 75%;
}
.tile.is-10 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 83.33333%;
}
.tile.is-11 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 91.66667%;
}
.tile.is-12 {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 100%;
}
}
.hero {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ flex-direction: column;
+ justify-content: space-between;
}
.hero .navbar {
@@ -10488,20 +9505,13 @@ label.panel-block:hover {
}
.hero.is-halfheight .hero-body, .hero.is-fullheight .hero-body {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
}
.hero.is-halfheight .hero-body > .container, .hero.is-fullheight .hero-body > .container {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.hero.is-halfheight {
@@ -10522,8 +9532,7 @@ label.panel-block:hover {
min-width: 100%;
position: absolute;
top: 50%;
- -webkit-transform: translate3d(-50%, -50%, 0);
- transform: translate3d(-50%, -50%, 0);
+ transform: translate3d(-50%, -50%, 0);
}
.hero-video.is-transparent {
@@ -10542,8 +9551,6 @@ label.panel-block:hover {
@media screen and (max-width: 768px) {
.hero-buttons .button {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.hero-buttons .button:not(:last-child) {
@@ -10553,12 +9560,8 @@ label.panel-block:hover {
@media screen and (min-width: 769px), print {
.hero-buttons {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.hero-buttons .button:not(:last-child) {
margin-right: 1.5rem;
@@ -10567,19 +9570,13 @@ label.panel-block:hover {
.hero-head,
.hero-foot {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
}
.hero-body {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 1;
+ flex-shrink: 0;
padding: 3rem 1.5rem;
}
@@ -10602,22 +9599,15 @@ label.panel-block:hover {
}
.bd-columns-tool, .bd-footer-donation-action, .bd-footer-star-figure {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-footer-support, .bd-footer-star, .bd-book-content {
background-color: white;
border-radius: 6px;
- -webkit-box-shadow: 0 1.5rem 1.5rem -1.25rem rgba(10, 10, 10, 0.05);
- box-shadow: 0 1.5rem 1.5rem -1.25rem rgba(10, 10, 10, 0.05);
+ box-shadow: 0 1.5rem 1.5rem -1.25rem rgba(10, 10, 10, 0.05);
display: block;
}
@@ -10631,12 +9621,8 @@ label.panel-block:hover {
}
.bd-breadcrumb {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
margin-bottom: 3rem;
}
@@ -10645,16 +9631,11 @@ label.panel-block:hover {
}
.bd-prev-next {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
+ align-items: flex-start;
color: #b5b5b5;
display: none;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
margin-left: 0.5rem;
text-align: center;
}
@@ -10671,12 +9652,8 @@ label.panel-block:hover {
.bd-prev-next-bis {
border-top: 2px solid whitesmoke;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
margin-top: 3rem;
}
@@ -10768,8 +9745,7 @@ label.panel-block:hover {
}
.bd-category.is-active .bd-category-toggle .icon {
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
+ transform: rotate(180deg);
}
.bd-category.is-active .bd-category-list {
@@ -10781,28 +9757,17 @@ label.panel-block:hover {
}
.bd-category-toggle {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
color: #b5b5b5;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: end;
- -ms-flex-pack: end;
- justify-content: flex-end;
+ justify-content: flex-end;
}
.bd-category-toggle .icon {
font-size: 0.75rem;
- -webkit-transform-origin: center;
- transform-origin: center;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: -webkit-transform;
- transition-property: -webkit-transform;
+ transform-origin: center;
+ transition-duration: 86ms;
transition-property: transform;
- transition-property: transform, -webkit-transform;
}
.bd-category-name {
@@ -10872,28 +9837,19 @@ label.panel-block:hover {
@media screen and (min-width: 769px), print {
.bd-duo {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.bd-lead {
background-color: white;
overflow: hidden;
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.bd-prev-next {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
.bd-side {
- -webkit-box-flex: 0;
- -ms-flex: 0 0 calc(14rem + 1.5rem);
- flex: 0 0 calc(14rem + 1.5rem);
+ flex: 0 0 calc(14rem + 1.5rem);
}
}
@@ -10909,27 +9865,17 @@ label.panel-block:hover {
margin-right: -3rem;
}
.bd-header {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
min-height: 130px;
}
.bd-header-titles {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.bd-header-carbon {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
margin: -15px 0 -15px 6rem;
width: 300px;
}
@@ -11247,15 +10193,9 @@ svg {
}
#carboncontainer {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-left: auto;
margin-right: auto;
max-width: 300px;
@@ -11264,9 +10204,7 @@ svg {
}
#carbon {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
min-height: 100px;
padding: 0;
position: relative;
@@ -11274,8 +10212,7 @@ svg {
#carbon:hover {
background-color: white;
- -webkit-box-shadow: 0 0 0 0.75rem white;
- box-shadow: 0 0 0 0.75rem white;
+ box-shadow: 0 0 0 0.75rem white;
}
@media screen and (min-width: 769px), print {
@@ -11363,9 +10300,7 @@ svg {
.bd-index-header a,
.bd-index-header strong {
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: color;
+ transition-duration: 86ms;
transition-property: color;
}
@@ -11445,8 +10380,7 @@ svg {
background-color: #EFF0EB;
border-color: transparent;
border-width: 2px;
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
font-family: "Nunito", serif;
}
@@ -11458,8 +10392,7 @@ svg {
.bd-index-custom.bd-is-after .input:focus,
.bd-index-custom.bd-is-after .select select:focus {
border-color: #FA7C91;
- -webkit-box-shadow: 0 0 0 0.125em rgba(250, 124, 145, 0.25);
- box-shadow: 0 0 0 0.125em rgba(250, 124, 145, 0.25);
+ box-shadow: 0 0 0 0.125em rgba(250, 124, 145, 0.25);
}
.bd-index-custom.bd-is-after .select:not(.is-multiple):not(:hover)::after {
@@ -11516,9 +10449,7 @@ svg {
}
.bd-columns-tool.bd-is-try .buttons {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-columns-tool.bd-is-try .button strong {
@@ -11546,11 +10477,7 @@ svg {
@media screen and (min-width: 769px), print {
.bd-columns-tools {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
}
.bd-columns-tool {
@@ -11574,17 +10501,13 @@ svg {
.bd-focus-item .title a,
.bd-focus-item .subtitle {
- -webkit-transition-duration: 172ms;
- transition-duration: 172ms;
- -webkit-transition-property: color;
+ transition-duration: 172ms;
transition-property: color;
}
.bd-focus-item .title {
position: relative;
- -webkit-transition-duration: 172ms;
- transition-duration: 172ms;
- -webkit-transition-property: color;
+ transition-duration: 172ms;
transition-property: color;
}
@@ -11604,22 +10527,15 @@ svg {
display: block;
opacity: 0;
pointer-events: none;
- -webkit-transform: scale(1.1);
- transform: scale(1.1);
- -webkit-transform-origin: center;
- transform-origin: center;
- -webkit-transition-duration: 172ms;
- transition-duration: 172ms;
- -webkit-transition-property: opacity, -webkit-transform;
- transition-property: opacity, -webkit-transform;
+ transform: scale(1.1);
+ transform-origin: center;
+ transition-duration: 172ms;
transition-property: opacity, transform;
- transition-property: opacity, transform, -webkit-transform;
}
.bd-focus-item:hover::before {
opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
.bd-focus-item:hover .subtitle {
@@ -11726,13 +10642,9 @@ svg {
background: #242424;
border-radius: 6px;
color: white;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
font-size: 15px;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
line-height: 20px;
padding: 15px 25px;
position: relative;
@@ -11806,46 +10718,27 @@ svg {
opacity: 1;
}
-@-webkit-keyframes introSpinner {
- from {
- opacity: 0;
- -webkit-transform: scale(1.14);
- transform: scale(1.14);
- }
- to {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
@keyframes introSpinner {
from {
opacity: 0;
- -webkit-transform: scale(1.14);
- transform: scale(1.14);
+ transform: scale(1.14);
}
to {
opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
}
.intro-spinner,
.intro-shadow {
- -webkit-animation-duration: 500ms;
- animation-duration: 500ms;
+ animation-duration: 500ms;
animation-easing-function: ease-out;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-transform-origin: center;
- transform-origin: center;
+ animation-fill-mode: both;
+ transform-origin: center;
}
.intro-spinner {
- -webkit-animation-name: introSpinner;
- animation-name: introSpinner;
+ animation-name: introSpinner;
}
.intro-spinner::before {
@@ -11858,29 +10751,14 @@ svg {
width: 1.5em;
}
-@-webkit-keyframes introShadow {
- from {
- opacity: 0;
- -webkit-transform: scale(0.86);
- transform: scale(0.86);
- }
- to {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
@keyframes introShadow {
from {
opacity: 0;
- -webkit-transform: scale(0.86);
- transform: scale(0.86);
+ transform: scale(0.86);
}
to {
opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
}
@@ -11889,19 +10767,15 @@ svg {
background-position: center center;
background-repeat: no-repeat;
background-size: cover;
- -webkit-box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
- box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
- -webkit-animation-name: introShadow;
- animation-name: introShadow;
+ box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.2);
+ animation-name: introShadow;
}
.intro-iframe {
opacity: 0;
padding-top: 56.25%;
position: relative;
- -webkit-transition-duration: 500ms;
- transition-duration: 500ms;
- -webkit-transition-property: opacity;
+ transition-duration: 500ms;
transition-property: opacity;
}
@@ -11930,7 +10804,6 @@ svg {
.intro-author span {
opacity: 0.5;
- -webkit-transition: 100ms opacity;
transition: 100ms opacity;
}
@@ -11940,8 +10813,6 @@ svg {
@media screen and (max-width: 768px) {
.intro-buttons .button {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
width: 100%;
}
@@ -11955,15 +10826,9 @@ svg {
font-size: 2.25rem;
}
.intro-buttons {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
}
}
@@ -11975,12 +10840,8 @@ svg {
@media screen and (min-width: 1088px) {
.intro-columns {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.intro-column {
width: calc(50% - 1.5rem);
@@ -12065,9 +10926,7 @@ svg {
white-space: normal;
}
#moreDropdown .navbar-item .level {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
}
@@ -12076,9 +10935,7 @@ svg {
font-size: 1.25rem;
line-height: 1.25;
margin-bottom: 0.5rem;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: color;
+ transition-duration: 86ms;
transition-property: color;
}
@@ -12089,18 +10946,13 @@ svg {
.bd-footer-subtitle {
color: #b5b5b5;
margin-top: -0.5rem;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: color;
+ transition-duration: 86ms;
transition-property: color;
}
.bd-footer-iframe {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
margin-bottom: -10px;
min-height: 30px;
}
@@ -12137,15 +10989,11 @@ svg {
}
.bd-footer-donations {
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-footer-donation {
- -webkit-box-flex: 0;
- -ms-flex: none;
- flex: none;
+ flex: none;
width: 240px;
}
@@ -12172,25 +11020,15 @@ svg {
@media screen and (min-width: 769px), print {
.bd-footer-stars {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
}
}
.bd-footer-star {
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
- transition-property: -webkit-box-shadow, -webkit-transform;
+ transition-duration: 86ms;
transition-property: box-shadow, transform;
- transition-property: box-shadow, transform, -webkit-box-shadow, -webkit-transform;
will-change: box-shadow, transform;
}
@@ -12207,10 +11045,8 @@ svg {
}
.bd-footer-star:hover {
- -webkit-box-shadow: 0 3rem 3rem -1.25rem rgba(10, 10, 10, 0.1);
- box-shadow: 0 3rem 3rem -1.25rem rgba(10, 10, 10, 0.1);
- -webkit-transform: translateY(-0.5rem);
- transform: translateY(-0.5rem);
+ box-shadow: 0 3rem 3rem -1.25rem rgba(10, 10, 10, 0.1);
+ transform: translateY(-0.5rem);
}
.bd-footer-star:hover .bd-footer-title,
@@ -12223,15 +11059,9 @@ svg {
}
.bd-footer-star.bd-is-expo .bd-footer-title, .bd-footer-star.bd-is-love .bd-footer-title {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-footer-star.bd-is-expo .bd-footer-title .icon, .bd-footer-star.bd-is-love .bd-footer-title .icon {
@@ -12297,23 +11127,14 @@ svg {
}
.bd-footer-link.bd-has-subtitle a {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ justify-content: space-between;
}
.bd-footer-link.bd-has-subtitle a strong {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
font-weight: unset;
}
@@ -12329,8 +11150,7 @@ svg {
@media screen and (max-width: 768px) {
.bd-footer-link.bd-has-subtitle a {
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
margin-top: 1rem;
}
.bd-footer-link.bd-has-subtitle a em {
@@ -12346,11 +11166,8 @@ svg {
}
.bd-footer-link-icon {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
margin-right: 0.5em;
text-align: center;
width: 1em;
@@ -12428,9 +11245,7 @@ svg {
font-size: 1.25rem;
padding: 1rem 3rem 1.5rem 5rem;
position: relative;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: background-color, color;
+ transition-duration: 86ms;
transition-property: background-color, color;
}
@@ -12473,13 +11288,15 @@ svg {
width: 1.5em;
}
+.bd-link-more {
+ font-size: 0.75em;
+ opacity: 0.5;
+}
+
@media screen and (min-width: 1088px) {
.bd-links {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.bd-link {
width: 50%;
@@ -12493,11 +11310,8 @@ svg {
}
.bd-docs {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
}
.bd-doc {
@@ -12533,14 +11347,9 @@ svg {
}
.bd-boxes {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ flex-wrap: wrap;
+ justify-content: space-between;
}
.bd-box {
@@ -12569,7 +11378,6 @@ svg {
}
.bd-special-shadow {
- background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), to(transparent));
background-image: linear-gradient(rgba(0, 0, 0, 0.1), transparent);
height: 8px;
left: 0;
@@ -12577,10 +11385,8 @@ svg {
position: absolute;
right: 0;
top: 100%;
- -webkit-transform: scaleY(0);
- transform: scaleY(0);
- -webkit-transform-origin: center top;
- transform-origin: center top;
+ transform: scaleY(0);
+ transform-origin: center top;
}
@media screen and (max-width: 1087px) {
@@ -12595,8 +11401,7 @@ svg {
.bd-color {
border-radius: 2px;
- -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
- box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
+ box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.1);
display: inline-block;
float: left;
height: 24px;
@@ -12852,11 +11657,7 @@ svg {
.bd-snippet::before {
content: "Snippet";
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
}
@@ -12878,8 +11679,6 @@ svg {
}
.bd-snippet-code.bd-is-more.bd-is-more-clipped .highlight .bd-show {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
}
@@ -12903,17 +11702,11 @@ svg {
@media screen and (min-width: 1088px) {
.bd-snippet.bd-is-vertical {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
+ align-items: stretch;
border-radius: 6px;
border-top-left-radius: 0;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-snippet.bd-is-vertical .bd-snippet-preview,
.bd-snippet.bd-is-vertical .bd-snippet-code {
@@ -12922,53 +11715,32 @@ svg {
.bd-snippet.bd-is-vertical .bd-snippet-code,
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
+ align-items: stretch;
border-radius: 0 6px 6px 0;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
}
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight,
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre,
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight .language-html {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
+ flex-grow: 1;
}
.bd-snippet.bd-is-vertical .bd-snippet-code .highlight pre {
white-space: pre;
}
.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-preview {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
width: calc(128px + 3rem);
}
.bd-snippet.bd-is-vertical.bd-is-one-fifth .bd-snippet-code {
width: calc(100% - 128px - 3rem);
}
.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-preview {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
width: calc(256px + 3rem);
}
.bd-snippet.bd-is-vertical.bd-is-two-fifths .bd-snippet-code {
@@ -12984,8 +11756,7 @@ svg {
.highlight.bd-is-hovering {
border-radius: 2px;
- -webkit-box-shadow: 0 0 0 2px #ffdd57;
- box-shadow: 0 0 0 2px #ffdd57;
+ box-shadow: 0 0 0 2px #ffdd57;
}
.highlight pre {
@@ -13029,18 +11800,12 @@ svg {
}
.bd-structure-item::after {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
content: attr(title);
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
font-family: monospace;
font-size: 11px;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding: 3px 5px;
z-index: 2;
}
@@ -13050,12 +11815,8 @@ svg {
}
.bd-structure-item.bd-is-structure-container::after {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ align-items: flex-start;
+ justify-content: flex-start;
padding: 0.5rem 0.75rem;
}
@@ -13087,8 +11848,7 @@ svg {
.highlight .bd-copy:focus, .highlight .bd-copy:active,
.highlight .bd-expand:focus,
.highlight .bd-expand:active {
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
.highlight .bd-expand {
@@ -13096,18 +11856,14 @@ svg {
}
.highlight .bd-show {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
background-color: rgba(245, 245, 245, 0.7);
border: none;
color: rgba(0, 0, 0, 0.5);
cursor: pointer;
display: none;
font-size: 0.75rem;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
width: 100%;
}
@@ -13241,8 +11997,7 @@ svg {
#_default_ > a {
background-color: white;
border-radius: 6px;
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
color: #4a4a4a;
display: block;
line-height: 1.375;
@@ -13254,13 +12009,11 @@ svg {
}
#_default_ > a:hover, #_default_ > a:focus {
- -webkit-box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
- box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
+ box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px #3273dc;
}
#_default_ > a:active {
- -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
- box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
+ box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.2), 0 0 0 1px #3273dc;
}
#_default_ > a span {
@@ -13301,12 +12054,8 @@ svg {
min-height: 120px;
}
#_default_ {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
position: relative;
}
#_default_ .default-ad {
@@ -13332,8 +12081,7 @@ svg {
background-color: #fafafa;
border-radius: 6px;
color: #697882;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-shrink: 0;
font-family: Helvetica, Roboto, "Segoe UI", Calibri, sans-serif;
font-size: 16px;
max-width: 420px;
@@ -13345,24 +12093,14 @@ svg {
}
.bd-tw-header {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ justify-content: flex-start;
}
.bd-tw-author {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
+ align-items: center;
color: #1c2022;
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
line-height: 1.2;
}
@@ -13372,8 +12110,7 @@ svg {
}
.bd-tw-avatar {
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-shrink: 0;
height: 36px;
margin-right: 9px;
width: 36px;
@@ -13432,11 +12169,7 @@ svg {
}
.Tweet-actions {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
margin-top: 8.4px;
}
@@ -13446,11 +12179,7 @@ svg {
}
.TweetAction {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
height: 24px;
min-width: 24px;
@@ -13530,11 +12259,8 @@ svg {
min-height: 595px;
}
.bd-tws-love {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
margin: -0.75rem;
}
.bd-tws-love .bd-tw {
@@ -13605,15 +12331,9 @@ svg {
}
.bd-website-image {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-bottom: 1.5rem;
position: relative;
}
@@ -13628,7 +12348,6 @@ svg {
.bd-website-image .b-lazy {
opacity: 0;
- -webkit-transition: opacity 500ms ease-out;
transition: opacity 500ms ease-out;
}
@@ -13638,14 +12357,12 @@ svg {
.bd-website-shadow {
border: 1px solid rgba(0, 0, 0, 0.04);
- -webkit-transition: opacity 200ms ease-out;
transition: opacity 200ms ease-out;
}
.bd-website-overlay {
background-color: #0a0a0a;
opacity: 0;
- -webkit-transition: opacity 200ms ease-out;
transition: opacity 200ms ease-out;
}
@@ -13661,14 +12378,9 @@ svg {
padding-top: 3rem;
}
.bd-websites {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ flex-wrap: wrap;
+ justify-content: space-between;
}
.bd-website {
margin-top: 3rem;
@@ -13690,15 +12402,9 @@ svg {
}
.bd-testimonial {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-testimonial-tweet {
@@ -13706,15 +12412,9 @@ svg {
}
.bd-more-loves {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-top: 1.5rem;
text-align: center;
}
@@ -13725,17 +12425,12 @@ svg {
}
.bd-more-loves .button span {
- -webkit-transform-origin: center center;
- transform-origin: center center;
- -webkit-transition: -webkit-transform 86ms ease-out;
- transition: -webkit-transform 86ms ease-out;
+ transform-origin: center center;
transition: transform 86ms ease-out;
- transition: transform 86ms ease-out, -webkit-transform 86ms ease-out;
}
.bd-more-loves .button:hover span {
- -webkit-transform: scale(1.04);
- transform: scale(1.04);
+ transform: scale(1.04);
}
@media screen and (max-width: 768px) {
@@ -13775,8 +12470,7 @@ svg {
}
.bd-rainbow {
- -webkit-animation: rainbow 8s ease infinite;
- animation: rainbow 8s ease infinite;
+ animation: rainbow 8s ease infinite;
background-image: linear-gradient(124deg, #ff470f, #ff3860, #b86bff, #3273dc);
background-size: 800% 800%;
}
@@ -13786,18 +12480,6 @@ svg {
color: white;
}
-@-webkit-keyframes rainbow {
- 0% {
- background-position: 1% 80%;
- }
- 50% {
- background-position: 99% 20%;
- }
- 100% {
- background-position: 1% 80%;
- }
-}
-
@keyframes rainbow {
0% {
background-position: 1% 80%;
@@ -13811,15 +12493,9 @@ svg {
}
.bd-hug {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
@media screen and (max-width: 768px) {
@@ -13842,15 +12518,9 @@ svg {
@media screen and (min-width: 769px), print {
.bd-embrace {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
.bd-embrace:not(:first-child) {
margin-top: 3rem;
@@ -13862,11 +12532,8 @@ svg {
margin-left: 1.5rem;
}
.bd-hugs {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
+ flex-wrap: wrap;
padding-bottom: 3rem;
}
.bd-hug {
@@ -13993,17 +12660,10 @@ svg {
}
.bd-klmn-gaps {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: start;
- -ms-flex-pack: start;
- justify-content: flex-start;
+ flex-wrap: wrap;
+ justify-content: flex-start;
margin-bottom: 1.25rem;
}
@@ -14035,15 +12695,9 @@ svg {
}
.bd-banner {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
overflow: hidden;
padding: 1rem;
position: relative;
@@ -14068,19 +12722,13 @@ svg {
}
.bd-banner .button {
- -webkit-transform-origin: center;
- transform-origin: center;
- -webkit-transition-duration: 86ms;
- transition-duration: 86ms;
- -webkit-transition-property: -webkit-transform;
- transition-property: -webkit-transform;
+ transform-origin: center;
+ transition-duration: 86ms;
transition-property: transform;
- transition-property: transform, -webkit-transform;
}
.bd-banner:hover .button {
- -webkit-transform: scale(1.1);
- transform: scale(1.1);
+ transform: scale(1.1);
}
.bd-banner-background {
@@ -14098,8 +12746,7 @@ svg {
.bd-banner-button {
display: inline-block;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-shrink: 0;
height: 34px;
position: relative;
width: 145px;
@@ -14120,52 +12767,29 @@ svg {
}
.bd-sponsors {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
}
.bd-sponsors a {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-right: 3rem;
width: 150px;
}
.bd-partner-sponsors {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -ms-flex-wrap: wrap;
- flex-wrap: wrap;
- -webkit-box-pack: justify;
- -ms-flex-pack: justify;
- justify-content: space-between;
+ flex-wrap: wrap;
+ justify-content: space-between;
}
.bd-partner-sponsors a {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-right: 1rem;
min-height: 100px;
}
@@ -14190,43 +12814,24 @@ svg {
@media screen and (min-width: 769px), print {
.bd-partners-list {
- -webkit-box-align: start;
- -ms-flex-align: start;
- align-items: flex-start;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: flex-start;
display: flex;
margin-left: auto;
margin-right: auto;
max-width: 1130px;
}
.bd-partner.bd-is-sponsor {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.bd-partner.bd-is-carbon {
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
margin-left: 6rem;
width: 300px;
}
}
-@-webkit-keyframes fadeIn {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
-}
-
@keyframes fadeIn {
from {
opacity: 0;
@@ -14236,25 +12841,12 @@ svg {
}
}
-@-webkit-keyframes zoomIn {
- from {
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
- }
- to {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
@keyframes zoomIn {
from {
- -webkit-transform: scale(0.8);
- transform: scale(0.8);
+ transform: scale(0.8);
}
to {
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
}
@@ -14297,8 +12889,7 @@ svg {
}
.bd-book-content {
- -webkit-box-shadow: 0 3rem 3rem -1rem rgba(10, 10, 10, 0.2);
- box-shadow: 0 3rem 3rem -1rem rgba(10, 10, 10, 0.2);
+ box-shadow: 0 3rem 3rem -1rem rgba(10, 10, 10, 0.2);
max-width: 520px;
padding: 3rem;
}
@@ -14362,15 +12953,9 @@ svg {
}
.bd-book-columns {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
margin-left: auto;
margin-right: auto;
max-width: 1080px;
@@ -14382,23 +12967,18 @@ svg {
.bd-book-modal .bd-book-modal-background,
.bd-book-modal .modal-content {
- -webkit-animation-duration: 250ms;
- animation-duration: 250ms;
+ animation-duration: 250ms;
animation-easing-function: ease-out;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
+ animation-fill-mode: both;
}
.bd-book-modal .bd-book-modal-background {
- -webkit-animation-name: fadeIn;
- animation-name: fadeIn;
+ animation-name: fadeIn;
}
.bd-book-modal .modal-content {
- -webkit-animation-name: zoomIn;
- animation-name: zoomIn;
- -webkit-transform-origin: center;
- transform-origin: center;
+ animation-name: zoomIn;
+ transform-origin: center;
}
.bd-book-modal-cover {
@@ -14407,23 +12987,14 @@ svg {
}
.bd-book-modal-columns {
- -webkit-box-align: stretch;
- -ms-flex-align: stretch;
- align-items: stretch;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: stretch;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
}
@media screen and (max-width: 768px) {
.bd-book-columns {
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
+ flex-direction: column;
}
.bd-book-buttons .button {
width: 100%;
@@ -14442,8 +13013,7 @@ svg {
@media screen and (min-width: 769px), print {
.bd-book-columns {
- -ms-flex-pack: distribute;
- justify-content: space-around;
+ justify-content: space-around;
}
.bd-book-header .tag {
position: absolute;
@@ -14464,20 +13034,13 @@ svg {
position: relative;
}
.bd-book-modal-column.bd-is-cover {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding: 2rem;
}
.bd-book-modal-column.bd-is-content .bd-book-content {
- -webkit-box-shadow: none;
- box-shadow: none;
+ box-shadow: none;
}
}
@@ -14496,54 +13059,35 @@ svg {
}
.native-flex {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
+ align-items: center;
display: flex;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
+ justify-content: center;
padding: 2em;
text-decoration: none;
}
.native-flex:hover .native-cta {
- -webkit-box-shadow: 0 1rem 2rem 0 rgba(10, 10, 10, 0.1);
- box-shadow: 0 1rem 2rem 0 rgba(10, 10, 10, 0.1);
- -webkit-transform: translateY(-0.25rem);
- transform: translateY(-0.25rem);
+ box-shadow: 0 1rem 2rem 0 rgba(10, 10, 10, 0.1);
+ transform: translateY(-0.25rem);
}
.native-img {
border-radius: 3px;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ flex-grow: 0;
+ flex-shrink: 0;
height: 50px;
width: 125px;
}
.native-details {
- -webkit-box-flex: 1;
- -ms-flex-positive: 1;
- flex-grow: 1;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ flex-grow: 1;
+ flex-shrink: 1;
}
.native-main {
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 1;
- flex-shrink: 1;
+ align-items: center;
+ flex-grow: 0;
+ flex-shrink: 1;
max-width: 640px;
}
@@ -14561,22 +13105,14 @@ svg {
.native-cta {
border: none;
- -webkit-box-shadow: 0 0.5rem 1rem 0 rgba(10, 10, 10, 0.2);
- box-shadow: 0 0.5rem 1rem 0 rgba(10, 10, 10, 0.2);
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
+ box-shadow: 0 0.5rem 1rem 0 rgba(10, 10, 10, 0.2);
+ flex-grow: 0;
+ flex-shrink: 0;
font-weight: 600;
height: auto;
padding: 0.5em 1em;
- -webkit-transition-duration: 172ms;
- transition-duration: 172ms;
- -webkit-transition-property: -webkit-box-shadow, -webkit-transform;
- transition-property: -webkit-box-shadow, -webkit-transform;
+ transition-duration: 172ms;
transition-property: box-shadow, transform;
- transition-property: box-shadow, transform, -webkit-box-shadow, -webkit-transform;
will-change: box-shadow, transform;
}
@@ -14595,15 +13131,11 @@ svg {
@media screen and (min-width: 600px) {
.native-flex {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
padding: 4em;
text-align: left;
}
.native-main {
- display: -webkit-box;
- display: -ms-flexbox;
display: flex;
margin-right: 2em;
}
@@ -14618,316 +13150,182 @@ svg {
}
}
-@-webkit-keyframes bdGrow {
- from {
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- to {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
@keyframes bdGrow {
from {
- -webkit-transform: scale(0);
- transform: scale(0);
+ transform: scale(0);
}
to {
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@-webkit-keyframes bdSlideDown {
- from {
- opacity: 0;
- -webkit-transform: translateY(-1rem);
- transform: translateY(-1rem);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
+ transform: scale(1);
}
}
@keyframes bdSlideDown {
from {
opacity: 0;
- -webkit-transform: translateY(-1rem);
- transform: translateY(-1rem);
+ transform: translateY(-1rem);
}
to {
opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- }
-}
-
-@-webkit-keyframes bdSlideUp {
- from {
- opacity: 0;
- -webkit-transform: translateY(1rem);
- transform: translateY(1rem);
- }
- to {
- opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
+ transform: translateY(0);
}
}
@keyframes bdSlideUp {
from {
opacity: 0;
- -webkit-transform: translateY(1rem);
- transform: translateY(1rem);
+ transform: translateY(1rem);
}
to {
opacity: 1;
- -webkit-transform: translateY(0);
- transform: translateY(0);
+ transform: translateY(0);
}
}
.intro-title, .intro-ghbtns,
.intro-author, .intro-npm, .intro-buttons .button, .bd-focus-item .title, .bd-focus-item .subtitle, .bd-focus-mobile, .bd-focus-tablet, .bd-focus-desktop, .bd-focus-cube-1, .bd-focus-cube-2, .bd-focus-cube-3, .bd-focus-css3, .bd-focus-github {
- -webkit-animation-duration: 500ms;
- animation-duration: 500ms;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- -webkit-animation-timing-function: cubic-bezier(0.14, 0.71, 0.29, 0.86);
- animation-timing-function: cubic-bezier(0.14, 0.71, 0.29, 0.86);
- -webkit-transform-origin: center center;
- transform-origin: center center;
+ animation-duration: 500ms;
+ animation-fill-mode: both;
+ animation-timing-function: cubic-bezier(0.14, 0.71, 0.29, 0.86);
+ transform-origin: center center;
}
.intro-title {
- -webkit-animation-name: bdSlideDown;
- animation-name: bdSlideDown;
+ animation-name: bdSlideDown;
}
.intro-ghbtns,
.intro-author {
- -webkit-animation-delay: 1s;
- animation-delay: 1s;
- -webkit-animation-duration: 1000ms;
- animation-duration: 1000ms;
- -webkit-animation-name: bdFadeIn;
- animation-name: bdFadeIn;
+ animation-delay: 1s;
+ animation-duration: 1000ms;
+ animation-name: bdFadeIn;
}
.intro-npm {
- -webkit-animation-delay: 250ms;
- animation-delay: 250ms;
- -webkit-animation-name: bdSlowIn;
- animation-name: bdSlowIn;
+ animation-delay: 250ms;
+ animation-name: bdSlowIn;
}
.intro-buttons .button {
- -webkit-animation-name: bdSlowIn;
- animation-name: bdSlowIn;
+ animation-name: bdSlowIn;
}
.intro-buttons .button:first-child {
- -webkit-animation-delay: 500ms;
- animation-delay: 500ms;
+ animation-delay: 500ms;
}
.intro-buttons .button:last-child {
- -webkit-animation-delay: 750ms;
- animation-delay: 750ms;
+ animation-delay: 750ms;
}
.bd-focus-item .title {
- -webkit-animation-name: bdSlideDown;
- animation-name: bdSlideDown;
+ animation-name: bdSlideDown;
}
.bd-focus-item .subtitle {
- -webkit-animation-name: bdSlideUp;
- animation-name: bdSlideUp;
+ animation-name: bdSlideUp;
}
.bd-focus-item:nth-child(1) .title {
- -webkit-animation-delay: 1s;
- animation-delay: 1s;
+ animation-delay: 1s;
}
.bd-focus-item:nth-child(1) .subtitle {
- -webkit-animation-delay: 1.125s;
- animation-delay: 1.125s;
+ animation-delay: 1.125s;
}
.bd-focus-item:nth-child(2) .title {
- -webkit-animation-delay: 1.5s;
- animation-delay: 1.5s;
+ animation-delay: 1.5s;
}
.bd-focus-item:nth-child(2) .subtitle {
- -webkit-animation-delay: 1.625s;
- animation-delay: 1.625s;
+ animation-delay: 1.625s;
}
.bd-focus-item:nth-child(3) .title {
- -webkit-animation-delay: 2s;
- animation-delay: 2s;
+ animation-delay: 2s;
}
.bd-focus-item:nth-child(3) .subtitle {
- -webkit-animation-delay: 2.125s;
- animation-delay: 2.125s;
+ animation-delay: 2.125s;
}
.bd-focus-item:nth-child(4) .title {
- -webkit-animation-delay: 2.5s;
- animation-delay: 2.5s;
+ animation-delay: 2.5s;
}
.bd-focus-item:nth-child(4) .subtitle {
- -webkit-animation-delay: 2.625s;
- animation-delay: 2.625s;
+ animation-delay: 2.625s;
}
.bd-focus-mobile, .bd-focus-tablet, .bd-focus-desktop {
- -webkit-animation-name: bdGrow;
- animation-name: bdGrow;
- -webkit-transform-origin: bottom center;
- transform-origin: bottom center;
+ animation-name: bdGrow;
+ transform-origin: bottom center;
}
.bd-focus-mobile {
- -webkit-animation-delay: 1s;
- animation-delay: 1s;
+ animation-delay: 1s;
}
.bd-focus-tablet {
- -webkit-animation-delay: 1.25s;
- animation-delay: 1.25s;
+ animation-delay: 1.25s;
}
.bd-focus-desktop {
- -webkit-animation-delay: 1.5s;
- animation-delay: 1.5s;
-}
-
-@-webkit-keyframes bdCube1 {
- 0% {
- -webkit-transform: translate3d(0, -50px, 0);
- transform: translate3d(0, -50px, 0);
- opacity: 0;
- }
- 25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1;
- }
+ animation-delay: 1.5s;
}
@keyframes bdCube1 {
0% {
- -webkit-transform: translate3d(0, -50px, 0);
- transform: translate3d(0, -50px, 0);
+ transform: translate3d(0, -50px, 0);
opacity: 0;
}
25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1;
- }
-}
-
-@-webkit-keyframes bdCube2 {
- 0% {
- -webkit-transform: translate3d(-40px, 30px, 0);
- transform: translate3d(-40px, 30px, 0);
- opacity: 0;
- }
- 25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes bdCube2 {
0% {
- -webkit-transform: translate3d(-40px, 30px, 0);
- transform: translate3d(-40px, 30px, 0);
+ transform: translate3d(-40px, 30px, 0);
opacity: 0;
}
25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- opacity: 1;
- }
-}
-
-@-webkit-keyframes bdCube3 {
- 0% {
- -webkit-transform: translate3d(40px, 30px, 0);
- transform: translate3d(40px, 30px, 0);
- opacity: 0;
- }
- 25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
opacity: 1;
}
}
@keyframes bdCube3 {
0% {
- -webkit-transform: translate3d(40px, 30px, 0);
- transform: translate3d(40px, 30px, 0);
+ transform: translate3d(40px, 30px, 0);
opacity: 0;
}
25%, 100% {
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
+ transform: translate3d(0, 0, 0);
opacity: 1;
}
}
.bd-focus-cube-1, .bd-focus-cube-2, .bd-focus-cube-3 {
- -webkit-animation-direction: alternate;
- animation-direction: alternate;
- -webkit-animation-duration: 2000ms;
- animation-duration: 2000ms;
- -webkit-animation-iteration-count: infinite;
- animation-iteration-count: infinite;
+ animation-direction: alternate;
+ animation-duration: 2000ms;
+ animation-iteration-count: infinite;
}
.bd-focus-cube-1 {
- -webkit-animation-delay: 1.5s;
- animation-delay: 1.5s;
- -webkit-animation-name: bdCube1;
- animation-name: bdCube1;
+ animation-delay: 1.5s;
+ animation-name: bdCube1;
}
.bd-focus-cube-2 {
- -webkit-animation-name: bdCube2;
- animation-name: bdCube2;
- -webkit-animation-delay: 1.75s;
- animation-delay: 1.75s;
+ animation-name: bdCube2;
+ animation-delay: 1.75s;
}
.bd-focus-cube-3 {
- -webkit-animation-name: bdCube3;
- animation-name: bdCube3;
- -webkit-animation-delay: 2s;
- animation-delay: 2s;
-}
-
-@-webkit-keyframes bdFadeIn {
- from {
- opacity: 0;
- }
- to {
- opacity: 1;
- }
+ animation-name: bdCube3;
+ animation-delay: 2s;
}
@keyframes bdFadeIn {
@@ -14939,292 +13337,119 @@ svg {
}
}
-@-webkit-keyframes bdSlowIn {
- from {
- opacity: 0;
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
- }
- to {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
@keyframes bdSlowIn {
from {
opacity: 0;
- -webkit-transform: scale(0.9);
- transform: scale(0.9);
+ transform: scale(0.9);
}
to {
opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
-}
-
-@-webkit-keyframes bdScaleIn {
- from {
- opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
- }
- to {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
}
@keyframes bdScaleIn {
from {
opacity: 0;
- -webkit-transform: scale(0);
- transform: scale(0);
+ transform: scale(0);
}
to {
opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
+ transform: scale(1);
}
}
.bd-focus-css3 {
- -webkit-animation-delay: 2s;
- animation-delay: 2s;
- -webkit-animation-name: bdScaleIn;
- animation-name: bdScaleIn;
+ animation-delay: 2s;
+ animation-name: bdScaleIn;
}
.bd-focus-github {
- -webkit-animation-delay: 2.5s;
- animation-delay: 2.5s;
- -webkit-animation-duration: 1500ms;
- animation-duration: 1500ms;
- -webkit-animation-name: bdJellyPop;
- animation-name: bdJellyPop;
-}
-
-@-webkit-keyframes bdJellyPop {
- 0% {
- opacity: 0;
- -webkit-transform: matrix3d(0.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 3.4% {
- opacity: 1;
- -webkit-transform: matrix3d(0.384, 0, 0, 0, 0, 0.466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.384, 0, 0, 0, 0, 0.466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 4.7% {
- -webkit-transform: matrix3d(0.505, 0, 0, 0, 0, 0.639, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.505, 0, 0, 0, 0, 0.639, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 6.81% {
- -webkit-transform: matrix3d(0.693, 0, 0, 0, 0, 0.904, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.693, 0, 0, 0, 0, 0.904, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 9.41% {
- -webkit-transform: matrix3d(0.895, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.895, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 10.21% {
- -webkit-transform: matrix3d(0.947, 0, 0, 0, 0, 1.204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.947, 0, 0, 0, 0, 1.204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 13.61% {
- -webkit-transform: matrix3d(1.111, 0, 0, 0, 0, 1.299, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.111, 0, 0, 0, 0, 1.299, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 14.11% {
- -webkit-transform: matrix3d(1.127, 0, 0, 0, 0, 1.298, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.127, 0, 0, 0, 0, 1.298, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 17.52% {
- -webkit-transform: matrix3d(1.187, 0, 0, 0, 0, 1.216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.187, 0, 0, 0, 0, 1.216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 18.72% {
- -webkit-transform: matrix3d(1.191, 0, 0, 0, 0, 1.169, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.191, 0, 0, 0, 0, 1.169, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 21.32% {
- -webkit-transform: matrix3d(1.177, 0, 0, 0, 0, 1.062, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.177, 0, 0, 0, 0, 1.062, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 24.32% {
- -webkit-transform: matrix3d(1.135, 0, 0, 0, 0, 0.964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.135, 0, 0, 0, 0, 0.964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 25.23% {
- -webkit-transform: matrix3d(1.121, 0, 0, 0, 0, 0.944, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.121, 0, 0, 0, 0, 0.944, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 29.03% {
- -webkit-transform: matrix3d(1.057, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.057, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 29.93% {
- -webkit-transform: matrix3d(1.043, 0, 0, 0, 0, 0.909, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.043, 0, 0, 0, 0, 0.909, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 35.54% {
- -webkit-transform: matrix3d(0.981, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.981, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 36.74% {
- -webkit-transform: matrix3d(0.974, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.974, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 41.04% {
- -webkit-transform: matrix3d(0.965, 0, 0, 0, 0, 1.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.965, 0, 0, 0, 0, 1.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 44.44% {
- -webkit-transform: matrix3d(0.969, 0, 0, 0, 0, 1.029, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.969, 0, 0, 0, 0, 1.029, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 52.15% {
- -webkit-transform: matrix3d(0.992, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.992, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 59.86% {
- -webkit-transform: matrix3d(1.005, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.005, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 63.26% {
- -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.007, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 75.28% {
- -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 85.49% {
- -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 90.69% {
- -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
- 100% {
- opacity: 1;
- -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- }
+ animation-delay: 2.5s;
+ animation-duration: 1500ms;
+ animation-name: bdJellyPop;
}
@keyframes bdJellyPop {
0% {
opacity: 0;
- -webkit-transform: matrix3d(0.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.1, 0, 0, 0, 0, 0.1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
3.4% {
opacity: 1;
- -webkit-transform: matrix3d(0.384, 0, 0, 0, 0, 0.466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.384, 0, 0, 0, 0, 0.466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.384, 0, 0, 0, 0, 0.466, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
4.7% {
- -webkit-transform: matrix3d(0.505, 0, 0, 0, 0, 0.639, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.505, 0, 0, 0, 0, 0.639, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.505, 0, 0, 0, 0, 0.639, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
6.81% {
- -webkit-transform: matrix3d(0.693, 0, 0, 0, 0, 0.904, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.693, 0, 0, 0, 0, 0.904, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.693, 0, 0, 0, 0, 0.904, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
9.41% {
- -webkit-transform: matrix3d(0.895, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.895, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.895, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
10.21% {
- -webkit-transform: matrix3d(0.947, 0, 0, 0, 0, 1.204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.947, 0, 0, 0, 0, 1.204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.947, 0, 0, 0, 0, 1.204, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
13.61% {
- -webkit-transform: matrix3d(1.111, 0, 0, 0, 0, 1.299, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.111, 0, 0, 0, 0, 1.299, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.111, 0, 0, 0, 0, 1.299, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
14.11% {
- -webkit-transform: matrix3d(1.127, 0, 0, 0, 0, 1.298, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.127, 0, 0, 0, 0, 1.298, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.127, 0, 0, 0, 0, 1.298, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
17.52% {
- -webkit-transform: matrix3d(1.187, 0, 0, 0, 0, 1.216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.187, 0, 0, 0, 0, 1.216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.187, 0, 0, 0, 0, 1.216, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
18.72% {
- -webkit-transform: matrix3d(1.191, 0, 0, 0, 0, 1.169, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.191, 0, 0, 0, 0, 1.169, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.191, 0, 0, 0, 0, 1.169, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
21.32% {
- -webkit-transform: matrix3d(1.177, 0, 0, 0, 0, 1.062, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.177, 0, 0, 0, 0, 1.062, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.177, 0, 0, 0, 0, 1.062, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
24.32% {
- -webkit-transform: matrix3d(1.135, 0, 0, 0, 0, 0.964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.135, 0, 0, 0, 0, 0.964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.135, 0, 0, 0, 0, 0.964, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
25.23% {
- -webkit-transform: matrix3d(1.121, 0, 0, 0, 0, 0.944, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.121, 0, 0, 0, 0, 0.944, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.121, 0, 0, 0, 0, 0.944, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.03% {
- -webkit-transform: matrix3d(1.057, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.057, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.057, 0, 0, 0, 0, 0.907, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
29.93% {
- -webkit-transform: matrix3d(1.043, 0, 0, 0, 0, 0.909, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.043, 0, 0, 0, 0, 0.909, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.043, 0, 0, 0, 0, 0.909, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
35.54% {
- -webkit-transform: matrix3d(0.981, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.981, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.981, 0, 0, 0, 0, 0.966, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
36.74% {
- -webkit-transform: matrix3d(0.974, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.974, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.974, 0, 0, 0, 0, 0.981, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
41.04% {
- -webkit-transform: matrix3d(0.965, 0, 0, 0, 0, 1.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.965, 0, 0, 0, 0, 1.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.965, 0, 0, 0, 0, 1.02, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
44.44% {
- -webkit-transform: matrix3d(0.969, 0, 0, 0, 0, 1.029, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.969, 0, 0, 0, 0, 1.029, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.969, 0, 0, 0, 0, 1.029, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
52.15% {
- -webkit-transform: matrix3d(0.992, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.992, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.992, 0, 0, 0, 0, 1.006, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
59.86% {
- -webkit-transform: matrix3d(1.005, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.005, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.005, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
63.26% {
- -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.007, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.007, 0, 0, 0, 0, 0.993, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
75.28% {
- -webkit-transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1.001, 0, 0, 0, 0, 1.003, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
85.49% {
- -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
90.69% {
- -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
100% {
opacity: 1;
- -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
- transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
+ transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
}
}
-
-/*# sourceMappingURL=bulma-docs.css.map */
\ No newline at end of file