diff --git a/liquet/css/home.css b/liquet/css/home.css
index a54b31e..17a6dc9 100644
--- a/liquet/css/home.css
+++ b/liquet/css/home.css
@@ -53,14 +53,32 @@
}
#home #list > .item:hover {
- box-shadow: 0 0.2em 0.5em -0.1em #00000014;
+ box-shadow: var(--small-shadow);
transform: scale(1.05);
+ padding-bottom: 1em;
}
#home #list > .item .title {
margin-bottom: .25em;
}
+#home #list > .item .thumbnail img {
+ width: 100%;
+ height: 12em;
+ object-fit: cover;
+ object-position: center;
+ border-radius: .5em;
+ transition: var(--animation);
+ transform: scale(1);
+}
+
+#home #list > .item:hover .thumbnail img {
+ transform: scale(1.2) translateY(-1em);
+ height: 16em;
+ margin: 1em 0;
+ box-shadow: var(--small-shadow);
+}
+
#home #list hr {
margin: 0 1.5em;
}
\ No newline at end of file
diff --git a/liquet/functions.php b/liquet/functions.php
index 9dd8348..15c3527 100644
--- a/liquet/functions.php
+++ b/liquet/functions.php
@@ -4,6 +4,7 @@ include_once( 'logos.php' );
add_theme_support( 'align-wide' );
add_theme_support( 'title-tag' );
+add_theme_support( 'post-thumbnails' );
add_action( 'wp_enqueue_scripts', function () {
wp_enqueue_style( 'flex', get_template_directory_uri() . '/css/flex.css' );
diff --git a/liquet/post-preview.php b/liquet/post-preview.php
index 64b7950..8aaa1f3 100644
--- a/liquet/post-preview.php
+++ b/liquet/post-preview.php
@@ -1,26 +1,30 @@