removed links from titles and edited colors on links and body
This commit is contained in:
parent
cf9deef323
commit
9c7aae6767
|
@ -459,7 +459,7 @@ Add your custom styles in this file so it is easier to update the theme.
|
|||
.edit-post-visual-editor__content-area select,
|
||||
.edit-post-visual-editor__content-area optgroup,
|
||||
.edit-post-visual-editor__content-area textarea {
|
||||
color: #404040;
|
||||
color: #202020;
|
||||
font-family: "din-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.3;
|
||||
|
@ -794,11 +794,11 @@ Add your custom styles in this file so it is easier to update the theme.
|
|||
}
|
||||
|
||||
.edit-post-visual-editor__content-area a:visited {
|
||||
color: #303030;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
.edit-post-visual-editor__content-area a:hover, .edit-post-visual-editor__content-area a:focus, .edit-post-visual-editor__content-area a:active {
|
||||
color: #707070;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.edit-post-visual-editor__content-area a:focus {
|
||||
|
@ -908,7 +908,7 @@ Add your custom styles in this file so it is easier to update the theme.
|
|||
.edit-post-visual-editor__content-area .button:focus,
|
||||
.edit-post-visual-editor__content-area .wp-block-button__link:active,
|
||||
.edit-post-visual-editor__content-area .wp-block-button__link:focus {
|
||||
border-color: #222;
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
.edit-post-visual-editor__content-area .button-more::after {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -29,13 +29,13 @@ $color__text-screen: $color__black;
|
|||
$color__text-input: $color__black-light;
|
||||
$color__text-input-focus: $color__black;
|
||||
$color__link: $color__black;
|
||||
$color__link-visited: #303030;
|
||||
$color__link-hover: #707070;
|
||||
$color__text-main: #404040;
|
||||
$color__link-visited: $color__black-grey;
|
||||
$color__link-hover: $color__black-light;
|
||||
$color__text-main: #202020;
|
||||
|
||||
$color__border-button: #000;
|
||||
$color__border-button-hover: #111;
|
||||
$color__border-button-focus: #222;
|
||||
$color__border-button: $color__black;
|
||||
$color__border-button-hover: $color__black-grey;
|
||||
$color__border-button-focus: $color__black-light;
|
||||
$color__border-input: $color__black;
|
||||
$color__border-abbr: $color__grey-dark;
|
||||
|
||||
|
|
|
@ -388,7 +388,7 @@ input,
|
|||
select,
|
||||
optgroup,
|
||||
textarea {
|
||||
color: #404040;
|
||||
color: #202020;
|
||||
font-family: "din-regular", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.3;
|
||||
|
@ -723,11 +723,11 @@ a {
|
|||
}
|
||||
|
||||
a:visited {
|
||||
color: #303030;
|
||||
color: #111;
|
||||
}
|
||||
|
||||
a:hover, a:focus, a:active {
|
||||
color: #707070;
|
||||
color: #333;
|
||||
}
|
||||
|
||||
a:focus {
|
||||
|
@ -839,7 +839,7 @@ input[type="submit"]:focus,
|
|||
.button:focus,
|
||||
.wp-block-button__link:active,
|
||||
.wp-block-button__link:focus {
|
||||
border-color: #222;
|
||||
border-color: #333;
|
||||
}
|
||||
|
||||
.button-more::after {
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -12,7 +12,8 @@
|
|||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
|
||||
<header class="entry-header">
|
||||
<?php the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
|
||||
<?php //the_title( '<h1 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h1>' ); ?>
|
||||
<?php the_title( '<h1 class="entry-title">', '</h1>' ); ?>
|
||||
</header><!-- .entry-header -->
|
||||
|
||||
<section class="ofisuport-fund-info-contact-fields">
|
||||
|
|
|
@ -12,7 +12,8 @@
|
|||
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
|
||||
<header class="entry-header">
|
||||
<?php
|
||||
the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
|
||||
//the_title( '<h3 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h3>' );
|
||||
the_title( '<h3 class="entry-title">', '</h3>' );
|
||||
|
||||
if ( 'post' === get_post_type() ) :
|
||||
?>
|
||||
|
|
Loading…
Reference in New Issue