Compare commits

..

23 Commits

Author SHA1 Message Date
257284dd68 Update main.css 2025-01-12 15:08:51 +01:00
74716e29b8 change background-image opacity 2024-11-10 11:28:47 +01:00
7eb486c888 Update main.css 2024-07-26 23:20:06 +02:00
18dd97fd41 Update creds.html 2024-07-26 22:53:13 +02:00
2bc71bdb71 Update main.css 2024-07-26 22:29:45 +02:00
ce9960186f Update main.css 2024-07-26 22:25:57 +02:00
f5c6dbd852 Update main.css 2024-07-26 22:14:41 +02:00
7ec1e1972c Update creds.html 2024-07-26 21:44:27 +02:00
5ad12721c9 Update main.css 2024-07-26 21:41:59 +02:00
bb042ae868 Update paginator.html 2024-06-16 01:03:11 +06:00
5c0d4477da Update paginator.html 2024-06-05 18:00:57 +06:00
943ea8aaa9 Update main.css 2023-12-31 22:08:35 +06:00
e42ed10b71 Delete static/fantasque-sans-mono.woff2 2023-12-31 21:57:59 +06:00
65e17a323e Update main.css 2023-12-29 03:42:40 +06:00
6f515ecd00 Delete static/agave.ttf 2023-12-29 03:34:01 +06:00
f5425ee26a Update main.css 2023-12-29 03:33:41 +06:00
d68719f351 Add files via upload 2023-12-29 03:32:04 +06:00
577172877f Delete static/www 2023-12-27 19:57:32 +06:00
33dfb0b9a8 Add files via upload 2023-12-27 19:57:18 +06:00
5f7a76b0ba Create www 2023-12-27 19:54:55 +06:00
e0440e9f6d Delete static/cursor-pointer.svg 2023-12-26 04:03:30 +06:00
ac2f16f960 Delete static/cursor-auto.svg 2023-12-26 04:03:22 +06:00
52019dd623 Update main.css 2023-12-26 04:03:03 +06:00
5 changed files with 24 additions and 25 deletions

View File

@ -4,20 +4,30 @@
html {
background-color: black;
background-image: url("https://mm4rk3t.neocities.org/gif/stars.gif");
background-size: 600px;
background-attachment: fixed;
background-image: url("https://fruw.org/background.gif");
background-position: center top;
background-repeat: no-repeat;
color: #232333;
font-family: monospace;
font-size: 15px;
line-height: 1.6em;
scrollbar-color: var(--maincolor) black;
scrollbar-width: thin;
cursor: url("//fruw.org/cursor-auto.svg") 10 10, auto;
}
body{
html::before {
content: "";
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: black;
opacity: 0.8;
z-index: -1;
}
body {
display: block;
margin: 0;
color: white;
@ -50,13 +60,11 @@ a {
border-bottom: 3px solid var(--maincolor);
color: inherit;
text-decoration: none;
cursor: url("//fruw.org/cursor-pointer.svg") 10 10, pointer;
}
a:hover {
background-color: var(--maincolor);
color: black;
cursor: url("//fruw.org/cursor-pointer.svg") 10 10, pointer;
}
ul {
@ -121,6 +129,7 @@ pre {
line-height: 1.4;
padding: 1em;
white-space: pre-wrap;
word-break: break-word;
}
.highlight pre ::selection {
@ -137,7 +146,6 @@ pre code {
/* Containers */
.content {
background-color: black;
margin: auto;
max-width: 800px;
padding: 1% 3%;
@ -163,7 +171,7 @@ header .main {
h1, h2, h3, h4, h5, h6 {
font-size: 1.2rem;
margin-top: 2em;
margin-top: 1.7em;
}
h1::before { color: var(--maincolor); content: '# '; }
@ -244,7 +252,7 @@ body .site-description{
justify-content: space-between;
text-align: left;
display: inline-block;
background-color: black;
background-color: inherit;
}
.site-description pre ascii{

View File

@ -2,5 +2,6 @@
{{ "Добро пожаловать на мой веб-сайт!" | safeHTML }}
{{ "Сайт сделан на HUGO, тема - themu" | safeHTML }}
{{ "Контент лицензирован под СС BY-SA" | safeHTML }}
{{ "ASCII-арт взят с сайта asciiart.eu" | safeHTML }}
{{ "ASCII-text made with patjork.com" | safeHTML }}
{{ "./background.gif by A. L. Crego" | safeHTML }}
{{ "-->" | safeHTML }}

View File

@ -3,16 +3,16 @@
<ul class="pagination">
<span class="page-item page-prev">
{{ if $pag.HasPrev }}
<a {{ if $pag.HasPrev }}href="{{ $pag.Prev.URL }}"{{ end }} class="page-link" aria-label="Previous"><span aria-hidden="true"> Назад</span></a>
<a {{ if $pag.HasPrev }}href="{{ $pag.Prev.URL }}"{{ end }} class="page-link" aria-label="Previous"><span aria-hidden="true">&lt; Назад</span></a>
{{ else }}
<a {{ if $pag.HasNext }}href="{{ $pag.Next.URL }}"{{ end }} class="page-link" aria-label="Next"><span aria-hidden="true">Вперёд </span></a>
<a {{ if $pag.HasNext }}href="{{ $pag.Next.URL }}"{{ end }} class="page-link" aria-label="Next"><span aria-hidden="true">Вперёд &gt;</span></a>
{{ end }}
</span>
<span class="page-item page-next" style="float: right">
{{ if $pag.HasNext }}
<a {{ if $pag.HasNext }}href="{{ $pag.Next.URL }}"{{ end }} class="page-link" aria-label="Next"><span aria-hidden="true">Вперёд </span></a>
<a {{ if $pag.HasNext }}href="{{ $pag.Next.URL }}"{{ end }} class="page-link" aria-label="Next"><span aria-hidden="true">Вперёд &gt;</span></a>
{{ else }}
<a {{ if $pag.HasPrev }}href="{{ $pag.Prev.URL }}"{{ end }} class="page-link" aria-label="Previous"><span aria-hidden="true"> Назад</span></a>
<a {{ if $pag.HasPrev }}href="{{ $pag.Prev.URL }}"{{ end }} class="page-link" aria-label="Previous"><span aria-hidden="true">&lt; Назад</span></a>
{{ end }}
</span>
</ul>

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="5" fill="white" />
</svg>

Before

Width:  |  Height:  |  Size: 272 B

View File

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
<svg version="1.1" xml:space="preserve" xmlns="http://www.w3.org/2000/svg">
<circle cx="10" cy="10" r="5" fill="black" />
</svg>

Before

Width:  |  Height:  |  Size: 272 B