Adding blockquote css

Fixing background image for mobile and root page
This commit is contained in:
shockrah 2023-10-19 16:22:19 -07:00
parent 783191b0a4
commit 5ff55a50a2
2 changed files with 15 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en-us"> <html lang="en-us">
{{ partial "head.html" . }} {{ partial "head.html" . }}
{{ if eq .Permalink .Site.BaseURL }} {{ if .IsHome }}
<body class="main-page"> <body class="main-page">
{{ else }} {{ else }}
<body> <body>

View File

@ -5,6 +5,8 @@ body {
} }
.main-page { .main-page {
background-image: url("/img/bg.png"); background-image: url("/img/bg.png");
background-repeat: no-repeat;
background-size: cover;
} }
html { html {
@ -15,6 +17,12 @@ html {
overflow-x: hidden; overflow-x: hidden;
} }
blockquote {
border-left: whitesmoke;
border-left-style: solid;
padding-left: 20px;
}
.feed-container { .feed-container {
display: flex; display: flex;
justify-content: center; justify-content: center;
@ -252,4 +260,10 @@ ul.timeline > li:before {
position: static; position: static;
transform: none; transform: none;
} }
.main-page {
min-width: 100px;;
background-size: auto 100vh;
background-position: 25% top;
}
} }