HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/wwwroot/css/mixins/_grid.sass
=grid-static($full-width, $row-height:40px)
  // Horizontal grid
  $column-width: $full-width / 4

  %column,
  .column
    position: relative
    z-index: 5
    width: $column-width
    +box-sizing(border-box)

    // Static
    &.half
      width: $column-width / 2
    &.double
      width: $column-width * 2
    &.triple
      width: $column-width * 3
    &.full
      min-width: $full-width
      max-width: 1280px
      width: 80%
    &:not(.full):not(.fluid-100)
      float: left

  // Vertical grid
  .row
    height: $row-height
  .row-2
    height: $row-height * 2

=grid-fluid
  %column,
  .column
    // Fluid
    $values: 25 50 75 100
    @each $val in $values
      &.fluid-#{$val}
        width: percentage($val/100)
    &.fluid-12
      width: 12.5%
    &.fluid-16
      width: 16.66665%
    &.fluid-33
      width: 33.33333%
    &.fluid-66
      width: 66.66666%