Adding blockquote css
Fixing background image for mobile and root page
This commit is contained in:
parent
783191b0a4
commit
5ff55a50a2
@ -1,7 +1,7 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en-us">
|
||||
{{ partial "head.html" . }}
|
||||
{{ if eq .Permalink .Site.BaseURL }}
|
||||
{{ if .IsHome }}
|
||||
<body class="main-page">
|
||||
{{ else }}
|
||||
<body>
|
||||
|
@ -5,6 +5,8 @@ body {
|
||||
}
|
||||
.main-page {
|
||||
background-image: url("/img/bg.png");
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
html {
|
||||
@ -15,6 +17,12 @@ html {
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
blockquote {
|
||||
border-left: whitesmoke;
|
||||
border-left-style: solid;
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
.feed-container {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
@ -252,4 +260,10 @@ ul.timeline > li:before {
|
||||
position: static;
|
||||
transform: none;
|
||||
}
|
||||
.main-page {
|
||||
min-width: 100px;;
|
||||
background-size: auto 100vh;
|
||||
background-position: 25% top;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user