STYLE titles
This commit is contained in:
@ -299,8 +299,8 @@ button[type="reset"] {
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.posts-noticias .card-title-text:hover {
|
||||
font-weight: bolder;
|
||||
.hover-title-text:hover {
|
||||
color: var(--rojo-cnt) !important;
|
||||
}
|
||||
|
||||
/* efecto img */
|
||||
@ -494,7 +494,7 @@ button[type="reset"] {
|
||||
}
|
||||
|
||||
/**
|
||||
* Texto sección tease.twig
|
||||
* Animación en hover.
|
||||
*/
|
||||
.link-underline-animate {
|
||||
position: relative;
|
||||
|
||||
@ -2,13 +2,14 @@
|
||||
id="tease-{{ post.id }}"
|
||||
style="padding-bottom: 65px !important;">
|
||||
<div class="row align-items-center section-tease">
|
||||
|
||||
<!-- Columna izquierda: título y excerpt -->
|
||||
<div class="col">
|
||||
<h2 class="h2">
|
||||
<p class="fs-5 text-black fw-bolder">
|
||||
<a href="{{ post.link }}"
|
||||
class="text-decoration-none text-dark link-underline-animate">
|
||||
class="text-decoration-none text-dark hover-title-text">
|
||||
{{ post.title }}</a>
|
||||
</h2>
|
||||
</p>
|
||||
<p>{{ post.excerpt({
|
||||
words: 50,
|
||||
read_more: ''
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
<div class="col-md-8">
|
||||
<div class="card-body" style="padding-bottom: 60px;">
|
||||
<a href="{{ noticias.link }}" title="{{ noticias.title }}" class="text-decoration-none card-title">
|
||||
<h5 class="card-title-text">{{ noticias.title }}</h5>
|
||||
<h5 class="fw-bolder hover-title-text">{{ noticias.title }}</h5>
|
||||
</a>
|
||||
|
||||
<p class="card-text"> {{
|
||||
|
||||
@ -3,14 +3,17 @@
|
||||
{% block content %}
|
||||
<h1 class="my-5 position-relative fs-3 fw-bold sp-module-title">{{ __('Documentos', 'Sindikatua') }}</h1>
|
||||
|
||||
<section class="documentos">
|
||||
<section class="page-documentos">
|
||||
<div class="container">
|
||||
{% if documentos %}
|
||||
|
||||
{% for doc in documentos %}
|
||||
<div class="card mb-3">
|
||||
<div class="card-header">
|
||||
<h6 class="card-title mb-1">{{ doc.title }}</h6>
|
||||
|
||||
<a href="{{ doc.documento_url }}" class="text-decoration-none" target="_blank">
|
||||
<p class="card-title mb-1 fs-5 text-black fw-bolder hover-title-text">{{ doc.title }}</p>
|
||||
</a>
|
||||
</div>
|
||||
<div class="row g-0">
|
||||
<div class="col-1">
|
||||
|
||||
@ -23,7 +23,7 @@
|
||||
<div class="col-md-8">
|
||||
<div class="card-body" style="padding-bottom: 60px;">
|
||||
<a href="{{ noticias.link }}" title="{{ noticias.title }}" class="text-decoration-none card-title">
|
||||
<h5 class="card-title-text">{{ noticias.title }}</h5>
|
||||
<h5 class="fw-bolder hover-title-text">{{ noticias.title }}</h5>
|
||||
</a>
|
||||
<p class="card-text"> {{
|
||||
noticias.excerpt({
|
||||
|
||||
@ -22,7 +22,7 @@
|
||||
<div class="col-md-8">
|
||||
<div class="card-body" style="padding-bottom: 60px;">
|
||||
<a href="{{ noticias.link }}" title="{{ noticias.title }}" class="text-decoration-none card-title">
|
||||
<h5 class="card-title-text">{{ noticias.title }}</h5>
|
||||
<h5 class="fw-bolder hover-title-text">{{ noticias.title }}</h5>
|
||||
</a>
|
||||
<p class="card-text"> {{
|
||||
noticias.excerpt({
|
||||
|
||||
Reference in New Issue
Block a user