Compare commits
2 Commits
688c628021
...
2704c83236
Author | SHA1 | Date |
---|---|---|
jorge | 2704c83236 | |
jorge | af0bf0c759 |
|
@ -17,16 +17,17 @@
|
||||||
top: 0;
|
top: 0;
|
||||||
height: 10rem;
|
height: 10rem;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
background-color: hsla(0, 0%, 100%, 0.95);
|
background-color: hsla(0, 0%, 100%, 1);
|
||||||
&::after {
|
&::after {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 5rem;
|
height: 3rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top:10rem;
|
top:10rem;
|
||||||
// https://css-tricks.com/easing-linear-gradients/
|
// https://css-tricks.com/easing-linear-gradients/
|
||||||
background-image: linear-gradient(
|
background-image: linear-gradient(
|
||||||
|
hsla(0, 0%, 100%, 1) 0%,
|
||||||
hsla(0, 0%, 100%, 0.95) 5%,
|
hsla(0, 0%, 100%, 0.95) 5%,
|
||||||
hsla(0, 0%, 100%, 0.738) 19%,
|
hsla(0, 0%, 100%, 0.738) 19%,
|
||||||
hsla(0, 0%, 100%, 0.541) 34%,
|
hsla(0, 0%, 100%, 0.541) 34%,
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
.edit-post-fullscreen-mode-close_site-icon {
|
||||||
|
background-color: $color__white;
|
||||||
|
}
|
||||||
|
|
||||||
.black-blocs {
|
.black-blocs {
|
||||||
padding: $font__size-body 0;
|
padding: $font__size-body 0;
|
||||||
gap: $font__size-body;
|
gap: $font__size-body;
|
||||||
|
@ -25,7 +29,7 @@
|
||||||
.big-plus.white .wp-block-button__link {
|
.big-plus.white .wp-block-button__link {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: white;
|
color: $color__white;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: $font__size-body*4.5;
|
font-size: $font__size-body*4.5;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
|
|
|
@ -27,7 +27,7 @@ get_header();
|
||||||
|
|
||||||
// If comments are open or we have at least one comment, load up the comment template.
|
// If comments are open or we have at least one comment, load up the comment template.
|
||||||
if ( comments_open() || get_comments_number() ) :
|
if ( comments_open() || get_comments_number() ) :
|
||||||
comments_template();
|
// comments_template();
|
||||||
endif;
|
endif;
|
||||||
|
|
||||||
endwhile; // End of the loop.
|
endwhile; // End of the loop.
|
||||||
|
|
12
style.css
12
style.css
|
@ -746,16 +746,16 @@ textarea {
|
||||||
top: 0;
|
top: 0;
|
||||||
height: 10rem;
|
height: 10rem;
|
||||||
margin-bottom: 2rem;
|
margin-bottom: 2rem;
|
||||||
background-color: rgba(255, 255, 255, 0.95);
|
background-color: white;
|
||||||
}
|
}
|
||||||
.no-sidebar .site-header::after {
|
.no-sidebar .site-header::after {
|
||||||
content: "";
|
content: "";
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 5rem;
|
height: 3rem;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 10rem;
|
top: 10rem;
|
||||||
background-image: linear-gradient(rgba(255, 255, 255, 0.95) 5%, rgba(255, 255, 255, 0.738) 19%, rgba(255, 255, 255, 0.541) 34%, rgba(255, 255, 255, 0.382) 47%, rgba(255, 255, 255, 0.278) 56.5%, rgba(255, 255, 255, 0.194) 65%, rgba(255, 255, 255, 0.126) 73%, rgba(255, 255, 255, 0.075) 80.2%, rgba(255, 255, 255, 0.042) 86.1%, rgba(255, 255, 255, 0.021) 91%, rgba(255, 255, 255, 0.008) 95.2%, rgba(255, 255, 255, 0.002) 98.2%, rgba(255, 255, 255, 0) 100%);
|
background-image: linear-gradient(white 0%, rgba(255, 255, 255, 0.95) 5%, rgba(255, 255, 255, 0.738) 19%, rgba(255, 255, 255, 0.541) 34%, rgba(255, 255, 255, 0.382) 47%, rgba(255, 255, 255, 0.278) 56.5%, rgba(255, 255, 255, 0.194) 65%, rgba(255, 255, 255, 0.126) 73%, rgba(255, 255, 255, 0.075) 80.2%, rgba(255, 255, 255, 0.042) 86.1%, rgba(255, 255, 255, 0.021) 91%, rgba(255, 255, 255, 0.008) 95.2%, rgba(255, 255, 255, 0.002) 98.2%, rgba(255, 255, 255, 0) 100%);
|
||||||
}
|
}
|
||||||
.no-sidebar .site-header .main {
|
.no-sidebar .site-header .main {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -1200,6 +1200,10 @@ textarea {
|
||||||
|
|
||||||
/* Guttenberg
|
/* Guttenberg
|
||||||
--------------------------------------------- */
|
--------------------------------------------- */
|
||||||
|
.edit-post-fullscreen-mode-close_site-icon {
|
||||||
|
background-color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.black-blocs {
|
.black-blocs {
|
||||||
padding: 1rem 0;
|
padding: 1rem 0;
|
||||||
gap: 1rem;
|
gap: 1rem;
|
||||||
|
@ -1234,7 +1238,7 @@ textarea {
|
||||||
.black-blocs .wp-block-column .big-plus.white .wp-block-button__link {
|
.black-blocs .wp-block-column .big-plus.white .wp-block-button__link {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
color: white;
|
color: #fff;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
font-size: 4.5rem;
|
font-size: 4.5rem;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -17,7 +17,7 @@
|
||||||
<div class="entry-meta">
|
<div class="entry-meta">
|
||||||
<?php
|
<?php
|
||||||
ofisuport_posted_on();
|
ofisuport_posted_on();
|
||||||
ofisuport_posted_by();
|
//ofisuport_posted_by();
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-meta -->
|
</div><!-- .entry-meta -->
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
<div class="entry-meta">
|
<div class="entry-meta">
|
||||||
<?php
|
<?php
|
||||||
ofisuport_posted_on();
|
ofisuport_posted_on();
|
||||||
ofisuport_posted_by();
|
//ofisuport_posted_by();
|
||||||
?>
|
?>
|
||||||
</div><!-- .entry-meta -->
|
</div><!-- .entry-meta -->
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
Loading…
Reference in New Issue