Sha256: 603b71395f07592baa558010d7cd0fd223305a003fe86eda3b975e332ab32235

Contents?: true

Size: 782 Bytes

Versions: 3

Compression:

Stored size: 782 Bytes

Contents

body
{
  min-height: 100vh;
  padding: 0;
  background-image: linear-gradient( to bottom, $color-gray-lightest, darken($color-gray-lightest, 6%));
}

// this could be avoided using more recent version of bootstrap or with bourbon
.clearfix
{
  &::after
  {
    display: table;
    clear: both;
    content: '';
  }
}

// useful to debug
.bordered
{
  border: 2px solid red;
}

.vertical-center
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.absolute-center
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-shadowed
{
  box-shadow: 0 3px 6px 0 rgba( 200, 200, 200, .7 );
}

.box-shadowed-up
{
  box-shadow: 0 3px 10px 2px rgba( 150, 150, 150, .7 );
}

.pagination
{
  float: left;
  width: 100%;
  margin-top: 0;
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
binda-0.1.3 app/assets/stylesheets/binda/settings/common.scss
binda-0.1.2 app/assets/stylesheets/binda/settings/common.scss
binda-0.1.1 app/assets/stylesheets/binda/settings/common.scss