-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #447 from templaza/v3
v3.0.5
- Loading branch information
Showing
59 changed files
with
4,108 additions
and
1,772 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
#astroid-preloader { | ||
position: fixed; | ||
align-items:center; | ||
justify-content:center; | ||
width:100%; | ||
height:100%; | ||
top: 0; | ||
right: 0; | ||
bottom: 0; | ||
left: 0; | ||
z-index:99999; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
.hidden { | ||
display: none; | ||
visibility: hidden; | ||
} | ||
.as-form-group { | ||
.control-label { | ||
> label { | ||
margin-bottom: 0.5rem; | ||
} | ||
} | ||
} | ||
.password-group { | ||
meter { | ||
width: 100%; | ||
} | ||
} | ||
ul.tags { | ||
.btn-sm { | ||
--bs-btn-padding-y: 0.3rem; | ||
--bs-btn-padding-x: 1rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
.com-contact { | ||
.col-md-4{ | ||
&:empty { | ||
padding: 0; | ||
width: 0; | ||
} | ||
} | ||
.contact-title-first { | ||
margin-bottom: 0; | ||
} | ||
* + .contact-title-second { | ||
border-top: 1px solid var(--bs-border-color); | ||
padding-top: 1rem; | ||
margin-top: 1.5rem; | ||
} | ||
.com-contact__form { | ||
margin-bottom: 1.5rem; | ||
legend { | ||
display: none; | ||
} | ||
.control-group{ | ||
&:not(.field-spacer) { | ||
margin-bottom: 1rem; | ||
} | ||
label { | ||
margin-bottom: 0.5rem; | ||
} | ||
} | ||
} | ||
@include media-breakpoint-up(lg) { | ||
dl.dl-horizontal { | ||
display: grid; | ||
grid-template-columns: auto 1fr; | ||
dt { | ||
grid-column-start: 1; | ||
grid-column-end: 2; | ||
} | ||
dd { | ||
grid-column-start: 2; | ||
grid-column-end: 3; | ||
padding: 0 0 0 10px; | ||
} | ||
} | ||
} | ||
.com-contact__articles { | ||
li{ | ||
padding: 10px 0; | ||
&:not(:last-child) { | ||
border-bottom: 1px solid var(--bs-border-color); | ||
} | ||
} | ||
} | ||
.fields-container { | ||
list-style: none; | ||
padding: 0; | ||
margin: 1rem 0; | ||
> li { | ||
&:not(:last-child) { | ||
margin-bottom: 0.5rem; | ||
} | ||
.field-label { | ||
font-weight: bold; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.blog { | ||
.com-content-category-blog__items + .com-content-category-blog__items { | ||
margin-top: 3rem; | ||
} | ||
.items-more { | ||
margin-top: 2rem; | ||
} | ||
.item-image { | ||
margin-bottom: 1.5rem; | ||
} | ||
} | ||
.as-readmore { | ||
position: relative; | ||
text-decoration: none; | ||
font-size: 0.895rem; | ||
font-weight: bold; | ||
&:after { | ||
position: absolute; | ||
content: ''; | ||
bottom: 0; | ||
left: 0; | ||
width: 100%; | ||
border-bottom: 1px solid var(--bs-border-color); | ||
transition: transform 0.2s ease; | ||
-ms-transform: scaleX(0); | ||
transform: scaleX(0); | ||
transform-origin: 0 0; | ||
} | ||
&:hover { | ||
text-decoration: none; | ||
&:after { | ||
-ms-transform: scaleX(1); | ||
transform: scaleX(1); | ||
} | ||
} | ||
} |
Oops, something went wrong.