mirror of
https://github.com/elementor/hello-theme.git
synced 2025-10-03 15:33:37 +08:00
109 lines
1.3 KiB
SCSS
109 lines
1.3 KiB
SCSS
/**
|
|
* General - https://wordpress.org/documentation/article/css/
|
|
*/
|
|
|
|
@use "../reset/variables" as variables;
|
|
|
|
.page-content,
|
|
.comments-area {
|
|
|
|
a {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
.alignright {
|
|
float: right;
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
.alignleft {
|
|
float: left;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.aligncenter {
|
|
clear: both;
|
|
display: block;
|
|
margin-inline: auto;
|
|
}
|
|
|
|
//Gutenberg support
|
|
.alignwide {
|
|
margin-inline: -80px;
|
|
}
|
|
|
|
//Gutenberg support
|
|
.alignfull {
|
|
margin-inline: calc(50% - 50vw);
|
|
max-width: 100vw;
|
|
width: 100vw;
|
|
|
|
img {
|
|
width: 100vw;
|
|
}
|
|
}
|
|
|
|
.wp-caption {
|
|
margin-block-end: 1.25rem;
|
|
max-width: 100%;
|
|
|
|
&.alignleft {
|
|
margin: 5px 20px 20px 0;
|
|
}
|
|
|
|
&.alignright {
|
|
margin: 5px 0 20px 20px;
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
margin-inline: auto;
|
|
}
|
|
}
|
|
|
|
.wp-caption-text {
|
|
margin: 0;
|
|
}
|
|
|
|
.gallery-caption {
|
|
display: block;
|
|
font-size: variables.$sm-font-size;
|
|
line-height: variables.$line-height-base;
|
|
margin: 0;
|
|
padding: variables.$xs-padding;
|
|
}
|
|
|
|
.pagination {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin: 20px auto;
|
|
}
|
|
|
|
.sticky {
|
|
position: relative;
|
|
display: block;
|
|
}
|
|
|
|
.bypostauthor {
|
|
font-size: inherit;
|
|
}
|
|
|
|
.hide {
|
|
display: none !important;
|
|
}
|
|
|
|
.post-password-form {
|
|
max-width: 500px;
|
|
margin: 50px auto;
|
|
|
|
p {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
[type=submit] {
|
|
margin-inline-start: 3px;
|
|
}
|
|
}
|