tt

Ruby code posted by t
created at 21 Feb 16:35, updated at 21 Feb 16:36

Edit | Back
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
  #blogs{
    float:left;
    width:75%;
    margin-right:5%;

    @media screen and (max-width: $break-tablet) {
      float:none;
      width:100%;
      margin-right: 0;
      
      @include clearfix;
    }

    .clearline{
      position: absolute;
      width:0;
      height:0;

    }

    @media screen and (min-width: 1030px)  {
      div:nth-of-type(3n):not(.details):not(.content){
        position: relative;
        clear:both;
        width:100%;
        height:1px;

      }
    }

     @media screen and (min-width: $break-tablet-sm) and (max-width: $break-ipad) {
      div:nth-of-type(2n):not(.details):not(.content){
        position: relative;
        clear:both;
        width:100%;
        height:1px;

      }
    }
  }
781 Bytes in 3 ms with coderay