tidy up contact css class structure

This commit is contained in:
gws 2024-11-10 14:39:03 +01:00
parent 401c641a7f
commit 05e5f519cd
5 changed files with 35 additions and 44 deletions

View file

@ -1,29 +1,6 @@
{% import "_macros.html" as macros %}
{% extends "index.html" %}
{% block head %}
<!-- <link rel="stylesheet" href="{{ get_url(path='carbon.css') }}"> -->
<link rel="stylesheet" href="{{ get_url(path='style.css') }}">
<link rel="stylesheet" href="{{ get_url(path='form.css') }}">
<link rel="stylesheet" type="text/css" href="/syntax-theme-dark.css" media="(prefers-color-scheme: dark)" />
<link rel="stylesheet" type="text/css" href="/syntax-theme-light.css" media="(prefers-color-scheme: light)" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.css"
integrity="sha384-nB0miv6/jRmo5UMMR1wu3Gz6NLsoTkbqJghGIsx//Rlm+ZU03BU6SQNC66uf4l5+" crossorigin="anonymous">
<!-- The loading of KaTeX is deferred to speed up page rendering -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/katex.min.js"
integrity="sha384-7zkQWkzuo3B5mTepMUcHkMB5jZaolc2xDwL6VFqjFALcbeS9Ggm/Yr2r3Dy4lfFg" crossorigin="anonymous"></script>
<!-- To automatically render math in text elements, include the auto-render extension: -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.16.11/dist/contrib/auto-render.min.js"
integrity="sha384-43gviWU0YVjaDtb/GhzOouOXtZMP/7XUzwPTstBeZFe/+rCMvRwr4yROQP43s0Xk" crossorigin="anonymous"
onload="renderMathInElement(document.body);"></script>
{% endblock head %}
{% block title %}{{ page.title }} | {{ super() }} {% endblock title %}
@ -34,6 +11,9 @@
{% endblock header %}
{% block content %}
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
<div class="content text contact">
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
</div>
{% endblock content %}

View file

@ -31,11 +31,6 @@
<meta charset="UTF-8">
<script src="https://unpkg.com/hyperscript.org@0.9.13"></script>{% endblock head %}
{% block header %}
<header class="pos-absolute" style="background-color: transparent">
{{ macros::render_header(path="/") }}
</header>
{% block body_tag%}
@ -44,6 +39,11 @@
{% endblock body_tag %}
{% block header %}
<header class="pos-absolute" style="background-color: transparent">
{{ macros::render_header(path="/") }}
</header>
<div class="hero">
{% block hero %}

View file

@ -16,7 +16,8 @@
{% endblock header %}
{% block content %}
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
<div class="content text ">
<div class="heading-text">{{ page.description }}</div>
{{ page.content | safe }}
</div>
{% endblock content %}