mirror of
https://github.com/fruworg/themu.git
synced 2025-08-17 22:41:12 +03:00
Compare commits
11 Commits
bb042ae868
...
main
Author | SHA1 | Date | |
---|---|---|---|
fd50a946d0 | |||
1224b6f67c | |||
257284dd68 | |||
74716e29b8 | |||
7eb486c888 | |||
18dd97fd41 | |||
2bc71bdb71 | |||
ce9960186f | |||
f5c6dbd852 | |||
7ec1e1972c | |||
5ad12721c9 |
@@ -4,10 +4,9 @@
|
||||
|
||||
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;
|
||||
@@ -16,6 +15,18 @@ html {
|
||||
scrollbar-width: thin;
|
||||
}
|
||||
|
||||
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;
|
||||
@@ -135,7 +146,6 @@ pre code {
|
||||
|
||||
/* Containers */
|
||||
.content {
|
||||
background-color: black;
|
||||
margin: auto;
|
||||
max-width: 800px;
|
||||
padding: 1% 3%;
|
||||
@@ -161,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: '# '; }
|
||||
@@ -242,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{
|
||||
|
@@ -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 }}
|
||||
|
@@ -2,5 +2,6 @@
|
||||
{{ "Добро пожаловать на мой веб-сайт!" | safeHTML }}
|
||||
{{ "Сайт сделан на HUGO, тема - themu" | safeHTML }}
|
||||
{{ "Контент лицензирован под СС BY-SA" | safeHTML }}
|
||||
{{ "ASCII-арт взят с сайта patorjk.com" | safeHTML }}
|
||||
{{ "ASCII-text made with patjork.com" | safeHTML }}
|
||||
{{ "./background.gif by A. L. Crego" | safeHTML }}
|
||||
{{ "-->" | safeHTML }}
|
||||
|
@@ -1,6 +1,6 @@
|
||||
<head lang="{{ .Site.Language.Lang }}">
|
||||
<meta charset="utf-8" />
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
||||
{{- $title := ( .Title ) -}}
|
||||
{{- $siteTitle := ( .Site.Title ) -}}
|
||||
{{- if .IsHome -}}
|
||||
@@ -13,9 +13,10 @@
|
||||
<link rel="icon" type="image/png" href={{ .Site.BaseURL }}{{ .Site.Params.favicon }} />
|
||||
{{- end -}}
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
|
||||
<meta property="og:image" content="{{ .Site.BaseURL }}{{ .Site.Params.og_image }}"/>
|
||||
<meta prefix="og: http://ogp.me/ns#" />
|
||||
<meta property="og:image" content="{{ .Site.BaseURL }}{{ .Site.Params.og_image }}" />
|
||||
{{ with .OutputFormats.Get "rss" -}}
|
||||
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}
|
||||
{{ end -}}
|
||||
@@ -30,7 +31,7 @@
|
||||
{{- if isset .Site.Params "customcss" }}
|
||||
{{ range .Site.Params.customCSS }}
|
||||
{{ $customstyle := resources.Get . | fingerprint }}
|
||||
<link rel="stylesheet" type="text/css" href="{{ $customstyle.Permalink }}">
|
||||
<link rel="stylesheet" type="text/css" href="{{ $customstyle.Permalink }}" />
|
||||
{{ end }}
|
||||
{{- end -}}
|
||||
{{- range .Site.Params.customJS }}
|
||||
|
Reference in New Issue
Block a user