Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/asurbernardo/amperage.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAsur <asur@asurbernardo.com>2020-01-18 21:03:04 +0300
committerAsur <asur@asurbernardo.com>2020-01-18 21:03:04 +0300
commitd5924ae08ac497b64a381eb3d6c4cf4d2c683e80 (patch)
tree936c5ffd9b010fc139e401c5f7720139a307ad3b
parent85d364254d1e912ce3196c0f79c57eea035fad19 (diff)
Clean up summary partial for listings
-rw-r--r--assets/theme.scss49
-rw-r--r--layouts/partials/post/summary.html10
2 files changed, 14 insertions, 45 deletions
diff --git a/assets/theme.scss b/assets/theme.scss
index d414a87..34c29fa 100644
--- a/assets/theme.scss
+++ b/assets/theme.scss
@@ -4,7 +4,7 @@ body {
grid-gap: 1em 1em;
font-size: 1.2em;
font-family: Courier New;
- line-height: 2;
+ line-height: 1.6;
color: black;
}
@@ -22,6 +22,7 @@ body {
justify-content: flex-start;
border: 1px solid #333;
a {
+ font-size: 1.2em;
white-space: nowrap;
border-bottom: none;
&:hover {
@@ -66,12 +67,8 @@ body {
flex-wrap: wrap;
}
-h1, h2, h3, h4 {
- font-family: Helvetica;
- line-height: 1.5;
-}
h1 {
- font-size: 4rem;
+ font-size: 3.5rem;
}
h2 {
font-size: 2.5rem;
@@ -296,25 +293,16 @@ blockquote {
}
.summary {
- &:not(:first-child) {
- margin-top: 5em;
+ &:not(:first-of-type) {
+ h2 {
+ margin-top: 2.5em;
+ }
}
& > * {
- margin-top: 1em;
- }
- &__container {
- position: relative;
- width: 100%;
- margin-bottom: 5em;
+ margin-top: 1.25em;
}
+
&__title {
- position: absolute;
- bottom: -2em;
- margin: .5em;
- padding: .5em;
- z-index: 1;
- background-color: white;
- border: 1px solid #333;
text-align: center;
}
.button {
@@ -359,25 +347,6 @@ blockquote {
margin-left: 0;
margin-right: 0;
}
- .summary {
- margin-top: unset;
- &:not(:first-child) {
- margin-top: 3em;
- }
- &__container {
- position: relative;
- margin-bottom: unset;
- }
- &__title {
- margin: unset;
- padding: unset;
- position: unset;
- border: none;
- }
- &__image {
- margin-top: 1em;
- }
- }
}
@media (max-width: 600px) {
diff --git a/layouts/partials/post/summary.html b/layouts/partials/post/summary.html
index 7e9add9..6fdc760 100644
--- a/layouts/partials/post/summary.html
+++ b/layouts/partials/post/summary.html
@@ -1,13 +1,13 @@
<article class="summary">
- <div class="summary__container">
- <h2 class="summary__title">{{.Title}}</h2>
+ <h2 class="summary__title">{{.Title}}</h2>
+ {{ with .Params.Image.Src }}
<amp-img class="summary__image"
- src="{{.Params.Image.Src}}"
+ src="{{ . }}"
layout="responsive"
width="1280"
height="720"
- alt="{{.Title}}"></amp-img>
- </div>
+ alt="{{ $.Title }}"></amp-img>
+ {{ end }}
<p>{{.Summary}}</p>
<a class="button" role="button"
href="{{.Permalink}}"