mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 03:43:35 +01:00
Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
8147e51f9e
4 changed files with 45 additions and 20 deletions
1
view/static/htmx@1.9.4.min.js
vendored
Normal file
1
view/static/htmx@1.9.4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
|
@ -16,8 +16,7 @@
|
|||
|
||||
html {
|
||||
box-sizing: border-box;
|
||||
font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
|
||||
Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
|
||||
font-family: system-ui, sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
|
@ -83,6 +82,7 @@ a {
|
|||
color: var(--accent-color);
|
||||
font-weight: 500;
|
||||
text-decoration: none;
|
||||
transition: color 120ms;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
|
@ -180,26 +180,42 @@ details[open] summary::before {
|
|||
margin-top: 4rem;
|
||||
padding: 1.5rem 0;
|
||||
color: hsl(0 0% 60%);
|
||||
font-size: var(--font-size-s);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.footer a {
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
.footer a:hover {
|
||||
color: hsl(0 0% 40%);
|
||||
}
|
||||
|
||||
.footer-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
flex-shrink: 0;
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-colophon {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-nologo {
|
||||
display: inline-block;
|
||||
fill: hsl(0 0% 60%);
|
||||
.footer-colophon svg {
|
||||
display: block;
|
||||
fill: currentColor;
|
||||
transition: fill 120ms;
|
||||
}
|
||||
|
||||
.footer-nologo:hover {
|
||||
fill: hsl(0 0% 40%);
|
||||
.footer-item:not(:last-child)::after {
|
||||
content: " · ";
|
||||
opacity: 0.5;
|
||||
margin: 0 0.25rem;
|
||||
}
|
||||
|
||||
.container {
|
||||
|
@ -384,5 +400,9 @@ details[open] summary::before {
|
|||
}
|
||||
|
||||
.changeset table th {
|
||||
font-size: var(--font-size-s);
|
||||
font-weight: 500;
|
||||
color: var(--color-muted);
|
||||
padding-right: 1rem;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
|
|
@ -17,9 +17,10 @@
|
|||
data-domain="headline.beta.nolog.cz"
|
||||
src="https://plausible.nolog.cz/js/plausible.js"
|
||||
></script>
|
||||
<script src="{{ url_for('static', filename='htmx@1.9.4.min.js') }}"></script>
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
<body hx-boost="true">
|
||||
<header class="header {% block header_class %}{% endblock %}">
|
||||
<div class="container">
|
||||
<a class="header-link-home" href="/">
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
<footer class="footer">
|
||||
<div class="container footer-container">
|
||||
<span class="footer-item footer-colophon">
|
||||
<span>created by</span>
|
||||
<a href="https://nolog.cz">
|
||||
<svg class="footer-nologo" width="120" viewBox="0 0 400 60" fill-rule="evenodd">
|
||||
|
@ -12,5 +13,7 @@
|
|||
<path d="M372.164,2.865l6.571,20.729l21.265,0l-17.203,12.812l6.571,20.729l-17.204,-12.811l-17.203,12.811l6.571,-20.729l-17.204,-12.812l21.265,0l6.571,-20.729Z"></path>
|
||||
</svg>
|
||||
</a>
|
||||
</span>
|
||||
<a class="footer-item" href="https://git.nolog.cz/mdivecky/headline">Source code</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
Loading…
Reference in a new issue