Add new Features:
- Block Alignments - Tables - Media with Links - Block Sizes
This commit is contained in:
+42
-1
@@ -2,9 +2,10 @@
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
overflow: auto;
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.block ~ .block {
|
||||
.block + .block {
|
||||
margin-top: 1.25em;
|
||||
}
|
||||
|
||||
@@ -17,12 +18,23 @@
|
||||
// Float
|
||||
// --------------------------------------------------------------------------------
|
||||
.float {}
|
||||
|
||||
.float-start {
|
||||
float: inline-start;
|
||||
}
|
||||
|
||||
.float-end {
|
||||
float: inline-end;
|
||||
}
|
||||
|
||||
.float-left {
|
||||
float: left;
|
||||
}
|
||||
|
||||
.float-right {
|
||||
float: right;
|
||||
}
|
||||
|
||||
.float-clear {
|
||||
clear: both;
|
||||
}
|
||||
@@ -34,6 +46,33 @@
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// Align
|
||||
// --------------------------------------------------------------------------------
|
||||
.align-start {
|
||||
text-align: start;
|
||||
}
|
||||
|
||||
.align-end {
|
||||
text-align: end;
|
||||
}
|
||||
|
||||
.align-left {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.align-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.align-justify {
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
.align-center {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
// --------------------------------------------------------------------------------
|
||||
// Block: Paragraph
|
||||
// --------------------------------------------------------------------------------
|
||||
@@ -81,4 +120,6 @@
|
||||
// Specialized Blocks
|
||||
// --------------------------------------------------------------------------------
|
||||
@import "_block-columns.scss";
|
||||
@import "_block-heading.scss";
|
||||
@import "_block-media.scss";
|
||||
@import "_block-table.scss";
|
||||
|
||||
Reference in New Issue
Block a user