style page
This commit is contained in:
@ -22,6 +22,10 @@
|
|||||||
font-display: swap;
|
font-display: swap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
/* PORTADA -> ENLACES */
|
/* PORTADA -> ENLACES */
|
||||||
.margin-50 {
|
.margin-50 {
|
||||||
margin: 50px 0 !important;
|
margin: 50px 0 !important;
|
||||||
@ -377,6 +381,11 @@ button[type="reset"] {
|
|||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.section-footer {
|
||||||
|
position: sticky;
|
||||||
|
top: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
.section-footer .text-footer a,
|
.section-footer .text-footer a,
|
||||||
.section-footer .text-footer p {
|
.section-footer .text-footer p {
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
|
|||||||
@ -1,6 +1,5 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="{{ site.charset }}" />
|
<meta charset="{{ site.charset }}" />
|
||||||
<link rel="stylesheet" href="{{ site.theme.link }}/style.css" type="text/css" media="screen" />
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<link rel="author" href="{{ site.theme.link }}/humans.txt" />
|
<link rel="author" href="{{ site.theme.link }}/humans.txt" />
|
||||||
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
<link rel="profile" href="http://gmpg.org/xfn/11" />
|
||||||
|
|||||||
@ -1,10 +1,11 @@
|
|||||||
{% extends 'layouts/base.twig' %}
|
{% extends 'layouts/base.twig' %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
<h1 class="my-5 position-relative fs-3 fw-bold sp-module-title">{{ post.title }}</h1>
|
||||||
|
|
||||||
<div class="content-wrapper">
|
<div class="content-wrapper">
|
||||||
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
|
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
|
||||||
<section class="article-content">
|
<section class="article-content">
|
||||||
<h1 class="article-h1">{{ post.title }}</h1>
|
|
||||||
<div class="article-body">{{ post.content }}</div>
|
<div class="article-body">{{ post.content }}</div>
|
||||||
</section>
|
</section>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
Reference in New Issue
Block a user