diff --git a/assets/css/parts/_front.scss b/assets/css/parts/_front.scss
index b1c9f75..83bd0c4 100644
--- a/assets/css/parts/_front.scss
+++ b/assets/css/parts/_front.scss
@@ -58,31 +58,6 @@
display: none;
}
- .third {
- flex: 1 0 30%;
- padding: 0.5rem;
- min-width: 200px;
- }
-
- .half {
- flex: 1 0 45%;
- padding: 0.5rem;
- min-width: 200px;
- }
-
- .third, .half {
- ul {
- list-style-type: none;
- margin: 0;
- padding: 0;
-
- li {
- margin: 0;
- padding: 0.5rem 0;
- }
- }
- }
-
.small {
flex: 1 0 38%;
padding: 0.5rem;
@@ -103,6 +78,37 @@
}
}
+// There's gotta be a better way to do this...
+.front-flex, section.carousel-item {
+ display: flex;
+ flex-grow: 1;
+ flex-basis: 20%;
+ .third {
+ flex: 1 0 30%;
+ padding: 0.5rem;
+ min-width: 200px;
+ }
+
+ .half {
+ flex: 1 0 45%;
+ padding: 0.5rem;
+ min-width: 200px;
+ }
+
+ .third, .half {
+ ul {
+ list-style-type: none;
+ margin: 0;
+ padding: 0;
+
+ li {
+ margin: 0;
+ padding: 0.5rem 0;
+ }
+ }
+ }
+}
+
@media only screen and (max-width: 960px) {
.carousel {
nav {
@@ -111,7 +117,7 @@
main {
margin-top: 0rem;
-
+
article {
display: block;
width: 100%;
diff --git a/content/publications/ally/index.md b/content/publications/ally/index.md
index 9e8e662..30b132d 100644
--- a/content/publications/ally/index.md
+++ b/content/publications/ally/index.md
@@ -33,7 +33,7 @@ Myself, I guess.
Coming June 2020!
- Pre-order paperback
+ Pre-order paperback
<
diff --git a/content/publications/arcana.md b/content/publications/arcana.md
index 90f6ec1..a9e664a 100644
--- a/content/publications/arcana.md
+++ b/content/publications/arcana.md
@@ -8,6 +8,7 @@ ogimg: /assets/img/publications/arcana.jpg
+- Purchase direct
All copies ordered direct are signed!
- Purchase from the publisher
- Purchase ebook from Bad Dog Books
- Purchase from Amazon
@@ -57,3 +58,7 @@ Included in this anthology are twenty-two works of furry fiction by authors with
+
+-----
+
+* Print ISBN: 978-1-945247-26-2
diff --git a/content/publications/eigengrau/index.md b/content/publications/eigengrau/index.md
index 7ba2595..671871e 100644
--- a/content/publications/eigengrau/index.md
+++ b/content/publications/eigengrau/index.md
@@ -16,7 +16,7 @@ With topics ranging from gender to mental health, flower language to dogs, these
Paperback
diff --git a/content/publications/restless-town/index.md b/content/publications/restless-town/index.md
index 843d9f6..52a702a 100644
--- a/content/publications/restless-town/index.md
+++ b/content/publications/restless-town/index.md
@@ -17,7 +17,7 @@ Restless Town is a collection of ten furry short stories from the fictional town
Paperback
- - Buy Direct
All copies ordered direct are signed!
+ - Buy Direct
All copies ordered direct are signed!
- Buy on FurPlanet
- Buy on Amazon
- Buy at Barnes & Noble
diff --git a/content/publications/rum-and-coke.md b/content/publications/rum-and-coke.md
index 65c9bcc..cdfc276 100644
--- a/content/publications/rum-and-coke.md
+++ b/content/publications/rum-and-coke.md
@@ -9,8 +9,8 @@ ogimg: /assets/img/publications/rum-and-coke.jpg
@@ -25,3 +25,7 @@ Much ink has been spent following the exploits of our furry characters, but some
These three short pieces of erotica explore the unique aspects of romance and sex within the furry fandom, focusing on queer stories and highlighting the complexities of meeting up for the first time, or at least the first time in many years.
+
+-----
+
+* Print ISBN: 978-1-948743-11-2
diff --git a/static/assets/js/carousel.js b/static/assets/js/carousel.js
index 6f8e8ee..278c2ef 100644
--- a/static/assets/js/carousel.js
+++ b/static/assets/js/carousel.js
@@ -30,12 +30,12 @@ function load() {
}
}
-// If we enter the page with a hash, select the current item.
-switchTab({preventDefault: () => {}});
-load();
-window.addEventListener('resize', load);
-
// If we enter the page with no hash, select home.
if (!window.location.hash) {
history.pushState({}, '', '#home');
}
+
+// If we enter the page with a hash, select the current item.
+switchTab({preventDefault: () => {}});
+load();
+window.addEventListener('resize', load);