mirror of
https://github.com/andrewgioia/blog.git
synced 2024-12-22 02:19:56 +00:00
Adds time field to tag lists, adds buffer to the last thought on the homepage side scroller
This commit is contained in:
parent
d2efd9e3fc
commit
cf02c99b68
@ -11,6 +11,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: $screen-laptop) {
|
@media only screen and (max-width: $screen-laptop) {
|
||||||
|
// increase the column and main content widths a bit
|
||||||
main {
|
main {
|
||||||
article {
|
article {
|
||||||
p,
|
p,
|
||||||
@ -19,7 +20,7 @@
|
|||||||
h4,
|
h4,
|
||||||
section,
|
section,
|
||||||
blockquote {
|
blockquote {
|
||||||
width: min(60vmax, 100%); // increase the column width a bit
|
width: min(60vmax, 100%);
|
||||||
}
|
}
|
||||||
h2 {
|
h2 {
|
||||||
margin: 2vmax 5vmin 1vmax;
|
margin: 2vmax 5vmin 1vmax;
|
||||||
@ -29,6 +30,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// make the toc wider
|
||||||
#toc {
|
#toc {
|
||||||
right: -50vw;
|
right: -50vw;
|
||||||
width: 50vw;
|
width: 50vw;
|
||||||
@ -36,11 +38,13 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: $screen-tablet) {
|
@media only screen and (max-width: $screen-tablet) {
|
||||||
|
// hiding the nav until we can make it responsive
|
||||||
header {
|
header {
|
||||||
nav {
|
nav {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// all content is now full width
|
||||||
main {
|
main {
|
||||||
align-self: stretch;
|
align-self: stretch;
|
||||||
overflow-x: hidden; // safety for negative figure margin below
|
overflow-x: hidden; // safety for negative figure margin below
|
||||||
@ -59,26 +63,35 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
article {
|
article {
|
||||||
|
// full width lists
|
||||||
ul {
|
ul {
|
||||||
align-self: start;
|
align-self: start;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
// move images outward
|
||||||
figure {
|
figure {
|
||||||
margin: 2vmax -6vmin 1vmax; // move images outward
|
margin: 2vmax -6vmin 1vmax;
|
||||||
max-width: 100vw;
|
max-width: 100vw;
|
||||||
figcaption {
|
figcaption {
|
||||||
margin: 0 12vmin;
|
margin: 0 12vmin;
|
||||||
}
|
}
|
||||||
|
// remove radius on images
|
||||||
|
picture,
|
||||||
|
img {
|
||||||
|
border-radius: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
&#home {
|
&#home {
|
||||||
|
// home page posts are vertical now
|
||||||
ul.posts li {
|
ul.posts li {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
time {
|
time {
|
||||||
padding: 1vmax 0 0 0;
|
padding: 1vmax 0 0 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// fixing the thoughts side scroller
|
||||||
ul.thoughts {
|
ul.thoughts {
|
||||||
transform: translateX(-6vmin);
|
transform: translateX(-6vmin);
|
||||||
li {
|
li {
|
||||||
@ -92,6 +105,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// make the toc even wider
|
||||||
#toc {
|
#toc {
|
||||||
right: -67vw;
|
right: -67vw;
|
||||||
width: 67vw;
|
width: 67vw;
|
||||||
@ -99,6 +113,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: $screen-mobile) {
|
@media only screen and (max-width: $screen-mobile) {
|
||||||
|
// stack the author block vertically now
|
||||||
section#author {
|
section#author {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
@ -107,6 +122,7 @@
|
|||||||
padding-bottom: 0.5vmax;
|
padding-bottom: 0.5vmax;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// add some padding on list page elements
|
||||||
main#list section {
|
main#list section {
|
||||||
time {
|
time {
|
||||||
color: var(--border-accent);
|
color: var(--border-accent);
|
||||||
@ -120,30 +136,36 @@
|
|||||||
padding-top: 1.375rem;
|
padding-top: 1.375rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// stack footer content vertically
|
||||||
footer section {
|
footer section {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
|
// just hide the toc here
|
||||||
#toc {
|
#toc {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
// other things hard-coded to be hidden on mobile
|
||||||
.hidden-mobile {
|
.hidden-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: $screen-narrow) {
|
@media only screen and (max-width: $screen-narrow) {
|
||||||
|
// show the banner on phones only
|
||||||
main aside img#banner {
|
main aside img#banner {
|
||||||
display: block;
|
display: block;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: $screen-tablet) {
|
@media only screen and (min-width: $screen-tablet) {
|
||||||
|
// hide anything that should just be visible on mobile
|
||||||
.show-mobile {
|
.show-mobile {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: $screen-display) {
|
@media only screen and (min-width: $screen-display) {
|
||||||
|
// padding improvements on big screens
|
||||||
main article h2 {
|
main article h2 {
|
||||||
margin: 2vmax 7vmin 1vmax;
|
margin: 2vmax 7vmin 1vmax;
|
||||||
}
|
}
|
||||||
@ -153,6 +175,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: $screen-full) {
|
@media only screen and (min-width: $screen-full) {
|
||||||
|
// padding improvements on really big screens
|
||||||
main article h2 {
|
main article h2 {
|
||||||
margin: 2vmax 5vmin 1vmax;
|
margin: 2vmax 5vmin 1vmax;
|
||||||
}
|
}
|
||||||
|
@ -351,6 +351,15 @@ main {
|
|||||||
top: -0.5vmax;
|
top: -0.5vmax;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// add some buffer to the last one in the list
|
||||||
|
&:last-child::after {
|
||||||
|
content: '';
|
||||||
|
display: block;
|
||||||
|
width: 6vmin;
|
||||||
|
height: 100%;
|
||||||
|
right: 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -369,14 +378,6 @@ main {
|
|||||||
color: var(--text-color-take);
|
color: var(--text-color-take);
|
||||||
font-size: max(2.5vmax, 2rem); // slightly smaller
|
font-size: max(2.5vmax, 2rem); // slightly smaller
|
||||||
}
|
}
|
||||||
|
|
||||||
article {
|
|
||||||
align-items: center;
|
|
||||||
border-radius: max(2vmax, 1rem);
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
width: min(50vmax, 100%);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// list pages
|
// list pages
|
||||||
|
@ -8,6 +8,9 @@
|
|||||||
|
|
||||||
{{ range .Data.Pages }}
|
{{ range .Data.Pages }}
|
||||||
<section>
|
<section>
|
||||||
|
<time>
|
||||||
|
{{ .PublishDate.Format "2006 Jan 2" }}
|
||||||
|
</time>
|
||||||
<h2>
|
<h2>
|
||||||
<a href="{{ .RelPermalink }}" class="wa link">
|
<a href="{{ .RelPermalink }}" class="wa link">
|
||||||
<span>{{ .Title }}</span>
|
<span>{{ .Title }}</span>
|
||||||
|
Loading…
Reference in New Issue
Block a user