aboutsummaryrefslogtreecommitdiffstats
path: root/app/assets/stylesheets/base/_utilities.sass
blob: fbda5630db8dbf3433ab74024f5183c0bea285ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
//-------------//
//  Utilities  //
//-------------//

.mt-xs
  margin-top: 10px
.mt-sm
  margin-top: 15px
.mt-md
  margin-top: 20px
.mt-lg
  margin-top: 40px

.mb-xs
  margin-bottom: 10px
.mb-sm
  margin-bottom: 15px
.mb-md
  margin-bottom: 20px
.mb-lg
  margin-bottom: 40px

.ml-xs
  margin-left: 10px
.ml-sm
  margin-left: 15px
.ml-md
  margin-left: 20px
.ml-lg
  margin-left: 40px

.mr-xs
  margin-right: 10px
.mr-sm
  margin-right: 15px
.mr-md
  margin-right: 20px
.mr-lg
  margin-right: 40px

@for $i from 5 through 100
  .w#{$i}
    width: $i * 1%

// Empty zones
=emptyzone($col1, $col2)
  background-image: linear-gradient(-45deg, $col1 25%, $col2 25%, $col2 50%, $col1 50%, $col1 75%, $col2 75%, $col2)
  background-size: 40px 40px

.cellwrap
  display: block
  // To avoid white spaces between childrend inline-block
  letter-spacing: -0.31em
  text-rendering: optimizespeed
  font-weight: 400

  > div
    display: inline-block
    // To avoid white spaces between children inline-block
    letter-spacing: normal
    word-spacing: normal
    text-rendering: auto
    overflow: hidden
    vertical-align: middle
    min-width: 20px

    + div
      margin-left: 5px

    &.hidden:first-child
      &, & + div
        margin-left: 0