mirror of
https://github.com/jgthms/bulma
synced 2026-03-18 11:24:29 -07:00
Add block documentation
This commit is contained in:
@@ -342,6 +342,7 @@ section {
|
||||
body,
|
||||
button,
|
||||
input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: BlinkMacSystemFont, -apple-system, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
|
||||
@@ -377,7 +378,7 @@ a:hover {
|
||||
|
||||
code {
|
||||
background-color: whitesmoke;
|
||||
color: #f14668;
|
||||
color: #da1039;
|
||||
font-size: 0.875em;
|
||||
font-weight: normal;
|
||||
padding: 0.25em 0.5em 0.25em;
|
||||
@@ -2593,6 +2594,10 @@ fieldset[disabled] .button {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
.progress:indeterminate::-ms-fill {
|
||||
animation-name: none;
|
||||
}
|
||||
|
||||
.progress.is-small {
|
||||
height: 0.75rem;
|
||||
}
|
||||
@@ -3458,7 +3463,9 @@ fieldset[disabled] .select select:-ms-input-placeholder,
|
||||
|
||||
.checkbox[disabled], .radio[disabled],
|
||||
fieldset[disabled] .checkbox,
|
||||
fieldset[disabled] .radio {
|
||||
fieldset[disabled] .radio,
|
||||
.checkbox input[disabled],
|
||||
.radio input[disabled] {
|
||||
color: #7a7a7a;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
@@ -5213,7 +5220,7 @@ button.dropdown-item.is-active {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media screen and (min-width: 769px), print {
|
||||
@media screen and (min-width: 769px) {
|
||||
.modal-content,
|
||||
.modal-card {
|
||||
margin: 0 auto;
|
||||
@@ -9155,6 +9162,222 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
background-color: #fafafa !important;
|
||||
}
|
||||
|
||||
.is-flex-direction-row {
|
||||
flex-direction: row !important;
|
||||
}
|
||||
|
||||
.is-flex-direction-row-reverse {
|
||||
flex-direction: row-reverse !important;
|
||||
}
|
||||
|
||||
.is-flex-direction-column {
|
||||
flex-direction: column !important;
|
||||
}
|
||||
|
||||
.is-flex-direction-column-reverse {
|
||||
flex-direction: column-reverse !important;
|
||||
}
|
||||
|
||||
.is-flex-wrap-nowrap {
|
||||
flex-wrap: nowrap !important;
|
||||
}
|
||||
|
||||
.is-flex-wrap-wrap {
|
||||
flex-wrap: wrap !important;
|
||||
}
|
||||
|
||||
.is-flex-wrap-wrap-reverse {
|
||||
flex-wrap: wrap-reverse !important;
|
||||
}
|
||||
|
||||
.is-justify-content-flex-start {
|
||||
justify-content: flex-start !important;
|
||||
}
|
||||
|
||||
.is-justify-content-flex-end {
|
||||
justify-content: flex-end !important;
|
||||
}
|
||||
|
||||
.is-justify-content-center {
|
||||
justify-content: center !important;
|
||||
}
|
||||
|
||||
.is-justify-content-space-between {
|
||||
justify-content: space-between !important;
|
||||
}
|
||||
|
||||
.is-justify-content-space-around {
|
||||
justify-content: space-around !important;
|
||||
}
|
||||
|
||||
.is-justify-content-space-evenly {
|
||||
justify-content: space-evenly !important;
|
||||
}
|
||||
|
||||
.is-justify-content-start {
|
||||
justify-content: start !important;
|
||||
}
|
||||
|
||||
.is-justify-content-end {
|
||||
justify-content: end !important;
|
||||
}
|
||||
|
||||
.is-justify-content-left {
|
||||
justify-content: left !important;
|
||||
}
|
||||
|
||||
.is-justify-content-right {
|
||||
justify-content: right !important;
|
||||
}
|
||||
|
||||
.is-align-content-flex-start {
|
||||
align-content: flex-start !important;
|
||||
}
|
||||
|
||||
.is-align-content-flex-end {
|
||||
align-content: flex-end !important;
|
||||
}
|
||||
|
||||
.is-align-content-center {
|
||||
align-content: center !important;
|
||||
}
|
||||
|
||||
.is-align-content-space-between {
|
||||
align-content: space-between !important;
|
||||
}
|
||||
|
||||
.is-align-content-space-around {
|
||||
align-content: space-around !important;
|
||||
}
|
||||
|
||||
.is-align-content-space-evenly {
|
||||
align-content: space-evenly !important;
|
||||
}
|
||||
|
||||
.is-align-content-stretch {
|
||||
align-content: stretch !important;
|
||||
}
|
||||
|
||||
.is-align-content-start {
|
||||
align-content: start !important;
|
||||
}
|
||||
|
||||
.is-align-content-end {
|
||||
align-content: end !important;
|
||||
}
|
||||
|
||||
.is-align-content-baseline {
|
||||
align-content: baseline !important;
|
||||
}
|
||||
|
||||
.is-align-items-stretch {
|
||||
align-items: stretch !important;
|
||||
}
|
||||
|
||||
.is-align-items-flex-start {
|
||||
align-items: flex-start !important;
|
||||
}
|
||||
|
||||
.is-align-items-flex-end {
|
||||
align-items: flex-end !important;
|
||||
}
|
||||
|
||||
.is-align-items-center {
|
||||
align-items: center !important;
|
||||
}
|
||||
|
||||
.is-align-items-baseline {
|
||||
align-items: baseline !important;
|
||||
}
|
||||
|
||||
.is-align-items-start {
|
||||
align-items: start !important;
|
||||
}
|
||||
|
||||
.is-align-items-end {
|
||||
align-items: end !important;
|
||||
}
|
||||
|
||||
.is-align-items-self-start {
|
||||
align-items: self-start !important;
|
||||
}
|
||||
|
||||
.is-align-items-self-end {
|
||||
align-items: self-end !important;
|
||||
}
|
||||
|
||||
.is-align-self-auto {
|
||||
align-self: auto !important;
|
||||
}
|
||||
|
||||
.is-align-self-flex-start {
|
||||
align-self: flex-start !important;
|
||||
}
|
||||
|
||||
.is-align-self-flex-end {
|
||||
align-self: flex-end !important;
|
||||
}
|
||||
|
||||
.is-align-self-center {
|
||||
align-self: center !important;
|
||||
}
|
||||
|
||||
.is-align-self-baseline {
|
||||
align-self: baseline !important;
|
||||
}
|
||||
|
||||
.is-align-self-stretch {
|
||||
align-self: stretch !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-0 {
|
||||
flex-grow: 0 !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-1 {
|
||||
flex-grow: 1 !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-2 {
|
||||
flex-grow: 2 !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-3 {
|
||||
flex-grow: 3 !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-4 {
|
||||
flex-grow: 4 !important;
|
||||
}
|
||||
|
||||
.is-flex-grow-5 {
|
||||
flex-grow: 5 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-0 {
|
||||
flex-shrink: 0 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-1 {
|
||||
flex-shrink: 1 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-2 {
|
||||
flex-shrink: 2 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-3 {
|
||||
flex-shrink: 3 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-4 {
|
||||
flex-shrink: 4 !important;
|
||||
}
|
||||
|
||||
.is-flex-shrink-5 {
|
||||
flex-shrink: 5 !important;
|
||||
}
|
||||
|
||||
.is-clearfix::after {
|
||||
clear: both;
|
||||
content: " ";
|
||||
@@ -9177,6 +9400,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
.is-clickable {
|
||||
cursor: pointer !important;
|
||||
}
|
||||
|
||||
.is-clipped {
|
||||
overflow: hidden !important;
|
||||
}
|
||||
@@ -9193,6 +9420,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.m-0 {
|
||||
margin: 0 !important;
|
||||
}
|
||||
|
||||
.mt-0 {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
@@ -9219,6 +9450,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.m-1 {
|
||||
margin: 0.25rem !important;
|
||||
}
|
||||
|
||||
.mt-1 {
|
||||
margin-top: 0.25rem !important;
|
||||
}
|
||||
@@ -9245,6 +9480,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
.m-2 {
|
||||
margin: 0.5rem !important;
|
||||
}
|
||||
|
||||
.mt-2 {
|
||||
margin-top: 0.5rem !important;
|
||||
}
|
||||
@@ -9271,6 +9510,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 0.5rem !important;
|
||||
}
|
||||
|
||||
.m-3 {
|
||||
margin: 0.75rem !important;
|
||||
}
|
||||
|
||||
.mt-3 {
|
||||
margin-top: 0.75rem !important;
|
||||
}
|
||||
@@ -9297,6 +9540,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
.m-4 {
|
||||
margin: 1rem !important;
|
||||
}
|
||||
|
||||
.mt-4 {
|
||||
margin-top: 1rem !important;
|
||||
}
|
||||
@@ -9323,6 +9570,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 1rem !important;
|
||||
}
|
||||
|
||||
.m-5 {
|
||||
margin: 1.5rem !important;
|
||||
}
|
||||
|
||||
.mt-5 {
|
||||
margin-top: 1.5rem !important;
|
||||
}
|
||||
@@ -9349,6 +9600,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 1.5rem !important;
|
||||
}
|
||||
|
||||
.m-6 {
|
||||
margin: 3rem !important;
|
||||
}
|
||||
|
||||
.mt-6 {
|
||||
margin-top: 3rem !important;
|
||||
}
|
||||
@@ -9375,6 +9630,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
margin-bottom: 3rem !important;
|
||||
}
|
||||
|
||||
.p-0 {
|
||||
padding: 0 !important;
|
||||
}
|
||||
|
||||
.pt-0 {
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
@@ -9401,6 +9660,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 0 !important;
|
||||
}
|
||||
|
||||
.p-1 {
|
||||
padding: 0.25rem !important;
|
||||
}
|
||||
|
||||
.pt-1 {
|
||||
padding-top: 0.25rem !important;
|
||||
}
|
||||
@@ -9427,6 +9690,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
.p-2 {
|
||||
padding: 0.5rem !important;
|
||||
}
|
||||
|
||||
.pt-2 {
|
||||
padding-top: 0.5rem !important;
|
||||
}
|
||||
@@ -9453,6 +9720,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 0.5rem !important;
|
||||
}
|
||||
|
||||
.p-3 {
|
||||
padding: 0.75rem !important;
|
||||
}
|
||||
|
||||
.pt-3 {
|
||||
padding-top: 0.75rem !important;
|
||||
}
|
||||
@@ -9479,6 +9750,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
.p-4 {
|
||||
padding: 1rem !important;
|
||||
}
|
||||
|
||||
.pt-4 {
|
||||
padding-top: 1rem !important;
|
||||
}
|
||||
@@ -9505,6 +9780,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 1rem !important;
|
||||
}
|
||||
|
||||
.p-5 {
|
||||
padding: 1.5rem !important;
|
||||
}
|
||||
|
||||
.pt-5 {
|
||||
padding-top: 1.5rem !important;
|
||||
}
|
||||
@@ -9531,6 +9810,10 @@ a.has-text-danger-dark:hover, a.has-text-danger-dark:focus {
|
||||
padding-bottom: 1.5rem !important;
|
||||
}
|
||||
|
||||
.p-6 {
|
||||
padding: 3rem !important;
|
||||
}
|
||||
|
||||
.pt-6 {
|
||||
padding-top: 3rem !important;
|
||||
}
|
||||
@@ -15049,7 +15332,6 @@ svg {
|
||||
justify-content: space-around;
|
||||
justify-content: center;
|
||||
margin: 0 auto;
|
||||
max-width: 96rem;
|
||||
}
|
||||
|
||||
.bd-partner-sponsor {
|
||||
@@ -15166,9 +15448,6 @@ svg {
|
||||
}
|
||||
|
||||
@media screen and (min-width: 1216px) {
|
||||
.bd-partnrs .container {
|
||||
max-width: 1536px;
|
||||
}
|
||||
.bd-partner.bd-is-carbon {
|
||||
margin-left: 3rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user