Refonte des nommages de positionnement
.left, .start, .fl WARNING : encore à méditer
This commit is contained in:
parent
7b78556a34
commit
c055a499c4
3 changed files with 102 additions and 124 deletions
|
@ -287,7 +287,56 @@ table {
|
|||
/* ==layout and modules */
|
||||
/* ----------------------------- */
|
||||
|
||||
/* float layout */
|
||||
/* simple blocks alignment */
|
||||
.left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* text and contents alignment */
|
||||
.txtleft {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.txtright {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.txtcenter {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* floating elements */
|
||||
.fl {
|
||||
float: left;
|
||||
}
|
||||
|
||||
img.fl {
|
||||
margin-right: @small-value;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
img.fr {
|
||||
margin-left: @small-value;
|
||||
}
|
||||
|
||||
img.fl,
|
||||
img.fr {
|
||||
margin-bottom: @tiny-value;
|
||||
}
|
||||
|
||||
|
||||
/* module, gains superpower "BFC" Block Formating Context */
|
||||
.mod {
|
||||
overflow: hidden;
|
||||
|
@ -334,62 +383,3 @@ body > script {
|
|||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* alignments (blocks and inline) */
|
||||
/* ------------------------------ */
|
||||
|
||||
/* blocks alignment */
|
||||
.left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* text and contents alignment */
|
||||
.txtleft {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.txtright {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.txtcenter {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* left (or starting) elements */
|
||||
.left,
|
||||
.start {
|
||||
float: left;
|
||||
}
|
||||
|
||||
img.left,
|
||||
img.start {
|
||||
margin-right: @small-value;
|
||||
}
|
||||
|
||||
/* right (or ending) elements */
|
||||
.right,
|
||||
.end {
|
||||
float: right;
|
||||
}
|
||||
|
||||
img.right,
|
||||
img.end {
|
||||
margin-left: @small-value;
|
||||
}
|
||||
|
||||
img.left,
|
||||
img.right,
|
||||
img.start,
|
||||
img.end {
|
||||
margin-bottom: @tiny-value;
|
||||
}
|
||||
|
|
|
@ -276,12 +276,60 @@ table {
|
|||
margin-bottom: $medium-value;
|
||||
}
|
||||
|
||||
|
||||
/* ----------------------------- */
|
||||
/* ==layout and modules */
|
||||
/* ----------------------------- */
|
||||
|
||||
/* float layout */
|
||||
/* simple blocks alignment */
|
||||
.left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* text and contents alignment */
|
||||
.txtleft {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.txtright {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.txtcenter {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* floating elements */
|
||||
.fl {
|
||||
float: left;
|
||||
}
|
||||
|
||||
img.fl {
|
||||
margin-right: $small-value;
|
||||
}
|
||||
|
||||
.fr {
|
||||
float: right;
|
||||
}
|
||||
|
||||
img.fr {
|
||||
margin-left: $small-value;
|
||||
}
|
||||
|
||||
img.fl,
|
||||
img.fr {
|
||||
margin-bottom: $tiny-value;
|
||||
}
|
||||
|
||||
|
||||
/* module, gains superpower "BFC" Block Formating Context */
|
||||
.mod {
|
||||
overflow: hidden;
|
||||
|
@ -328,63 +376,3 @@ body > script {
|
|||
display: inline-block;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
/* alignments (blocks and inline) */
|
||||
/* ------------------------------ */
|
||||
|
||||
/* blocks alignment */
|
||||
.left {
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.right {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
.center {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
/* text and contents alignment */
|
||||
.txtleft {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.txtright {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.txtcenter {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/* left (or starting) elements */
|
||||
.left,
|
||||
.start {
|
||||
float: left;
|
||||
}
|
||||
|
||||
img.left,
|
||||
img.start {
|
||||
margin-right: $small-value;
|
||||
}
|
||||
|
||||
/* right (or ending) elements */
|
||||
.right,
|
||||
.end {
|
||||
float: right;
|
||||
}
|
||||
|
||||
img.right,
|
||||
img.end {
|
||||
margin-left: $small-value;
|
||||
}
|
||||
|
||||
img.left,
|
||||
img.right,
|
||||
img.start,
|
||||
img.end {
|
||||
margin-bottom: $tiny-value;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue