Tip: Click lines to highlight, hold ctrl/cmd to multi-select

http://codedumper.com/alimi (9-Mar @ 22:52)

Syntax Highlighted Code

  1. /* Containers
  2. ----------------------------------------------------------------------------------------------------*/
  3. .container_ {
  4.     margin-left: auto;
  5.     margin-right: auto;
  6.     width: 0px;
  7. }
  8.  
  9. /* Grid >> Global
  10. ----------------------------------------------------------------------------------------------------*/
  11. .grid_{
  12.     display:inline;
  13.     float: left;
  14.     position: relative;
  15.     margin-left: 0px;
  16.     margin-right: 0px;
  17. }
  18.  
  19. /* Grid >> Children (Alpha ~ First, Omega ~ Last)
  20. ----------------------------------------------------------------------------------------------------*/
  21.  
  22. .alpha {
  23.     margin-left: 0;
  24. }
  25.  
  26. .omega {
  27.     margin-right: 0;
  28. }
  29.  
  30. /* Grid >> 2 Columns
  31. ----------------------------------------------------------------------------------------------------*/
  32.  
  33.  
  34.  
  35.  
  36. /* Prefix Extra Space >> 2 Columns
  37. ----------------------------------------------------------------------------------------------------*/
  38.  
  39.  
  40. /* Suffix Extra Space >> 2 Columns
  41. ----------------------------------------------------------------------------------------------------*/
  42.  
  43.  
  44. /* Push Space >> 2 Columns
  45. ----------------------------------------------------------------------------------------------------*/
  46.  
  47.  
  48.  
  49.  
  50. /* Pull Space >> 2 Columns
  51. ----------------------------------------------------------------------------------------------------*/
  52.  
  53.  
  54. /* Clear Floated Elements
  55. ----------------------------------------------------------------------------------------------------*/
  56.  
  57.  
  58. .clear {
  59.     clear: both;
  60.     display: block;
  61.     overflow: hidden;
  62.     visibility: hidden;
  63.     width: 0;
  64.     height: 0;
  65. }
  66.  
  67.  
  68. .clearfix:after {
  69.     clear: both;
  70.     content: ' ';
  71.     display: block;
  72.     font-size: 0;
  73.     line-height: 0;
  74.     visibility: hidden;
  75.     width: 0;
  76.     height: 0;
  77. }
  78.  
  79. .clearfix {
  80.     display: inline-block;
  81. }
  82.  
  83. * html .clearfix {
  84.     height: 1%;
  85. }
  86.  
  87. .clearfix {
  88.     display: block;
  89. }

Plain Code

/* Containers
----------------------------------------------------------------------------------------------------*/
.container_ {
    margin-left: auto;
    margin-right: auto;
    width: 0px;
}

/* Grid >> Global
----------------------------------------------------------------------------------------------------*/
.grid_{
    display:inline;
    float: left;
    position: relative;
    margin-left: 0px;
    margin-right: 0px;
}

/* Grid >> Children (Alpha ~ First, Omega ~ Last)
----------------------------------------------------------------------------------------------------*/

.alpha {
    margin-left: 0;
}

.omega {
    margin-right: 0;
}

/* Grid >> 2 Columns
----------------------------------------------------------------------------------------------------*/




/* Prefix Extra Space >> 2 Columns
----------------------------------------------------------------------------------------------------*/


/* Suffix Extra Space >> 2 Columns
----------------------------------------------------------------------------------------------------*/


/* Push Space >> 2 Columns
----------------------------------------------------------------------------------------------------*/




/* Pull Space >> 2 Columns
----------------------------------------------------------------------------------------------------*/


/* Clear Floated Elements
----------------------------------------------------------------------------------------------------*/


.clear {
    clear: both;
    display: block;
    overflow: hidden;
    visibility: hidden;
    width: 0;
    height: 0;
}


.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    line-height: 0;
    visibility: hidden;
    width: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

Permalink: http://codedumper.com/alimi