mirror of
https://github.com/jgthms/bulma.git
synced 2024-11-14 11:14:24 +00:00
Init Smart Grid
This commit is contained in:
parent
117bc975bc
commit
d82b994387
File diff suppressed because it is too large
Load Diff
3251
docs/css/bulma.css
vendored
3251
docs/css/bulma.css
vendored
File diff suppressed because it is too large
Load Diff
27
docs/cyp/grid/grid.html
Normal file
27
docs/cyp/grid/grid.html
Normal file
@ -0,0 +1,27 @@
|
||||
---
|
||||
layout: cypress
|
||||
title: Grid/Grid
|
||||
---
|
||||
|
||||
<div class="grid">
|
||||
<div class="cell">#1</div>
|
||||
<div class="cell">#2</div>
|
||||
<div class="cell">#3</div>
|
||||
<div class="cell">#4</div>
|
||||
<div class="cell">#5</div>
|
||||
<div class="cell">#6</div>
|
||||
<div class="cell">#7</div>
|
||||
<div class="cell">#8</div>
|
||||
<div class="cell">#9</div>
|
||||
<div class="cell">#10</div>
|
||||
<div class="cell">#11</div>
|
||||
<div class="cell">#12</div>
|
||||
<div class="cell">#13</div>
|
||||
<div class="cell">#14</div>
|
||||
<div class="cell">#15</div>
|
||||
<div class="cell">#16</div>
|
||||
<div class="cell">#17</div>
|
||||
<div class="cell">#18</div>
|
||||
<div class="cell">#19</div>
|
||||
<div class="cell">#20</div>
|
||||
</div>
|
@ -2,4 +2,5 @@
|
||||
@charset "utf-8"
|
||||
|
||||
@import "columns"
|
||||
@import "grid"
|
||||
@import "tiles"
|
||||
|
105
sass/grid/grid.sass
Normal file
105
sass/grid/grid.sass
Normal file
@ -0,0 +1,105 @@
|
||||
$max-column-count: 16
|
||||
|
||||
.grid
|
||||
--grid-gap: 1.5rem
|
||||
--column-count: 12
|
||||
--grid-gap-count: calc(var(--column-count) - 1)
|
||||
--grid-column-min: calc(calc(100% / var(--column-count)) - calc(var(--grid-gap-count) / var(--column-count) * var(--grid-column-gap, var(--grid-gap))))
|
||||
--cell-column-span: 1
|
||||
--cell-row-span: 1
|
||||
display: grid
|
||||
grid-gap: var(--grid-gap)
|
||||
grid-column-gap: var(--grid-column-gap, var(--grid-gap))
|
||||
grid-row-gap: var(--grid-row-gap, var(--grid-gap))
|
||||
grid-template-columns: repeat(auto-fit, minmax(var(--grid-column-min), 1fr))
|
||||
grid-template-rows: auto
|
||||
+mobile
|
||||
--column-count: 2
|
||||
+tablet
|
||||
--column-count: 4
|
||||
+desktop
|
||||
--column-count: 8
|
||||
+widescreen
|
||||
--column-count: 12
|
||||
+fullhd
|
||||
--column-count: 16
|
||||
|
||||
=cell-properties($suffix: '')
|
||||
@for $i from 1 through $max-column-count
|
||||
$name: $i + $suffix
|
||||
&.is-col-start-#{$name}
|
||||
--cell-column-start: #{$i}
|
||||
&.is-col-from-end-#{$name}
|
||||
--cell-column-start: #{$i * -1}
|
||||
&.is-col-span-#{$name}
|
||||
--cell-column-span: #{$i}
|
||||
&.is-row-start-#{$name}
|
||||
--cell-row-start: #{$i}
|
||||
&.is-row-from-end-#{$name}
|
||||
--cell-row-start: #{$i * -1}
|
||||
&.is-row-span-#{$name}
|
||||
--cell-row-span: #{$i}
|
||||
|
||||
.cell
|
||||
background-color: lavender
|
||||
border-radius: 1em
|
||||
grid-column-end: span var(--cell-column-span)
|
||||
grid-column-start: var(--cell-column-start)
|
||||
grid-row-end: span var(--cell-row-span)
|
||||
grid-row-start: var(--cell-row-start)
|
||||
padding: 0.75em
|
||||
// Sizes
|
||||
&.is-col-start-end
|
||||
--cell-column-start: -1
|
||||
&.is-row-start-end
|
||||
--cell-row-start: -1
|
||||
+cell-properties
|
||||
+mobile
|
||||
+cell-properties('-mobile')
|
||||
+tablet
|
||||
+cell-properties('-tablet')
|
||||
+tablet-only
|
||||
+cell-properties('-tablet-only')
|
||||
+desktop
|
||||
+cell-properties('-desktop')
|
||||
+desktop-only
|
||||
+cell-properties('-desktop-only')
|
||||
+widescreen
|
||||
+cell-properties('-widescreen')
|
||||
+widescreen-only
|
||||
+cell-properties('-widescreen-only')
|
||||
+fullhd
|
||||
+cell-properties('-fullhd')
|
||||
|
||||
=grid-properties($suffix: '')
|
||||
.has-1-cols#{$suffix}
|
||||
--column-count: 1
|
||||
@for $i from 2 through $max-column-count
|
||||
.has-#{$i}-cols#{$suffix}
|
||||
--column-count: #{$i}
|
||||
|
||||
+grid-properties
|
||||
|
||||
+mobile
|
||||
+grid-properties('-mobile')
|
||||
|
||||
+tablet
|
||||
+grid-properties('-tablet')
|
||||
|
||||
+tablet-only
|
||||
+grid-properties('-tablet-only')
|
||||
|
||||
+desktop
|
||||
+grid-properties('-desktop')
|
||||
|
||||
+desktop-only
|
||||
+grid-properties('-desktop-only')
|
||||
|
||||
+widescreen
|
||||
+grid-properties('-widescreen')
|
||||
|
||||
+widescreen-only
|
||||
+grid-properties('-widescreen-only')
|
||||
|
||||
+fullhd
|
||||
+grid-properties('-fullhd')
|
Loading…
Reference in New Issue
Block a user