|
|
@ -34,6 +34,11 @@ |
|
|
|
box-sizing: border-box; |
|
|
|
} |
|
|
|
|
|
|
|
body > .ui.grid { |
|
|
|
margin-left: 0% !important; |
|
|
|
margin-right: 0% !important; |
|
|
|
} |
|
|
|
|
|
|
|
.ui.grid:after, |
|
|
|
.ui.row:after { |
|
|
|
content: "."; |
|
|
@ -346,29 +351,33 @@ |
|
|
|
width: @oneColumn; |
|
|
|
} |
|
|
|
|
|
|
|
/*---------------------- |
|
|
|
Centered |
|
|
|
-----------------------*/ |
|
|
|
|
|
|
|
.ui.centered.grid, |
|
|
|
.ui.centered.grid > .row, |
|
|
|
.ui.grid .centered.row { |
|
|
|
text-align: center; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*---------------------- |
|
|
|
Relaxed |
|
|
|
-----------------------*/ |
|
|
|
|
|
|
|
.ui.relaxed.grid > .column, |
|
|
|
.ui.relaxed.grid > .column:not(.row), |
|
|
|
.ui.relaxed.grid > .row > .column { |
|
|
|
padding-left: @relaxedGutterWidth; |
|
|
|
padding-right: @relaxedGutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
.ui.very.relaxed.grid > .column, |
|
|
|
.ui.very.relaxed.grid > .column:not(.row), |
|
|
|
.ui.very.relaxed.grid > .row > .column { |
|
|
|
padding-left: @veryRelaxedGutterWidth; |
|
|
|
padding-right: @veryRelaxedGutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
.ui.vertically.divided.grid > .row:before { |
|
|
|
margin-left: @relaxedGutterWidth; |
|
|
|
margin-right: @relaxedGutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
/*---------------------- |
|
|
|
Fitted |
|
|
|
-----------------------*/ |
|
|
@ -377,15 +386,13 @@ |
|
|
|
margin-left: -@gutterWidth; |
|
|
|
margin-right: -@gutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
.ui.relaxed.fitted.grid { |
|
|
|
margin-left: -@relaxedGutterWidth; |
|
|
|
margin-right: -@relaxedGutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
.ui.vertically.divided.fitted.grid > .row:before { |
|
|
|
margin-left: 0%; |
|
|
|
margin-right: 0%; |
|
|
|
.ui.very.relaxed.fitted.grid { |
|
|
|
margin-left: -@veryRelaxedGutterWidth; |
|
|
|
margin-right: -@veryRelaxedGutterWidth; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -405,14 +412,8 @@ |
|
|
|
Divided |
|
|
|
-----------------------*/ |
|
|
|
|
|
|
|
.ui.divided.grid:not(.vertically), |
|
|
|
.ui.divided.grid:not(.vertically) > .row { |
|
|
|
display: table; |
|
|
|
max-width: 100%; |
|
|
|
} |
|
|
|
.ui.divided.grid:not(.vertically) > .column:not(.row), |
|
|
|
.ui.divided.grid:not(.vertically) > .row > .column { |
|
|
|
display: table-cell; |
|
|
|
box-shadow: @dividedBorder; |
|
|
|
} |
|
|
|
.ui.divided.grid:not(.vertically) > .column.row { |
|
|
@ -425,11 +426,7 @@ |
|
|
|
} |
|
|
|
|
|
|
|
/* Divided Row */ |
|
|
|
.ui.grid > .divided.row { |
|
|
|
display: table; |
|
|
|
} |
|
|
|
.ui.grid > .divided.row > .column { |
|
|
|
display: table-cell; |
|
|
|
box-shadow: @dividedBorder; |
|
|
|
} |
|
|
|
.ui.grid > .divided.row > .column:first-child { |
|
|
@ -446,7 +443,7 @@ |
|
|
|
top: 0px; |
|
|
|
left: 0px; |
|
|
|
|
|
|
|
width: 100%; |
|
|
|
width: (100% - (@gutterWidth * 2)); |
|
|
|
height: 1px; |
|
|
|
|
|
|
|
margin: 0% @gutterWidth; |
|
|
@ -464,6 +461,24 @@ |
|
|
|
box-shadow: @verticallyDividedInvertedBorder; |
|
|
|
} |
|
|
|
|
|
|
|
/* Relaxed */ |
|
|
|
.ui.relaxed.vertically.divided.grid > .row:before { |
|
|
|
margin-left: @relaxedGutterWidth; |
|
|
|
margin-right: @relaxedGutterWidth; |
|
|
|
width: (100% - (@relaxedGutterWidth * 2)); |
|
|
|
} |
|
|
|
.ui.very.relaxed.vertically.divided.grid > .row:before { |
|
|
|
margin-left: @veryRelaxedGutterWidth; |
|
|
|
margin-right: @veryRelaxedGutterWidth; |
|
|
|
width: (100% - (@veryRelaxedGutterWidth * 2)); |
|
|
|
} |
|
|
|
|
|
|
|
/* Fitted */ |
|
|
|
.ui.vertically.divided.fitted.grid > .row:before { |
|
|
|
margin-left: 0%; |
|
|
|
margin-right: 0%; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/*---------------------- |
|
|
|
Celled |
|
|
|