Merge pull request #61 from 0UserName/master

.content-align-justify for content alignment
This commit is contained in:
⚔️ DR ⚔️
2025-11-01 12:50:42 -04:00
committed by GitHub
5 changed files with 85 additions and 1 deletions

View File

@@ -164,6 +164,10 @@
text-align: right;
}
.align-justify {
text-align: justify;
}
.footerspacer {
padding-left: 15px;
padding-right: 15px;

View File

@@ -357,6 +357,10 @@
}
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -507,6 +511,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -662,6 +670,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -803,6 +815,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -906,6 +922,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {

View File

@@ -82,6 +82,8 @@
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="number"],
select,
textarea {
@include vendor('appearance', 'none');
@@ -126,6 +128,8 @@
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="number"],
select {
height: _size(element-height);
}
@@ -222,6 +226,8 @@
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="date"],
input[type="number"],
select,
textarea {
border-color: _palette($p, border);

View File

@@ -346,6 +346,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -492,6 +496,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -628,6 +636,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -784,6 +796,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {
@@ -928,6 +944,10 @@
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
// Image Position.
&.image-position-left {
.image {

View File

@@ -46,6 +46,23 @@
@include padding(_size(padding, small) * 1.5, _size(padding, small));
}
}
// Content Alignment.
&.content-align-left {
// ...
}
&.content-align-center {
text-align: center;
}
&.content-align-right {
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
}
/* Wrapper (style2) */
@@ -104,6 +121,23 @@
@include padding(_size(padding, small), _size(padding, small) * 0.75);
}
}
// Content Alignment.
&.content-align-left {
// ...
}
&.content-align-center {
text-align: center;
}
&.content-align-right {
text-align: right;
}
&.content-align-justify {
text-align: justify;
}
}
#wrapper {