From df72c1aff01eb74c846efadffef055fa2a901310 Mon Sep 17 00:00:00 2001 From: Tony Marsella Date: Thu, 3 Aug 2023 16:45:51 -0700 Subject: [PATCH] feature-sort-by-newest-oldest --- static/style.css | 16 ++++++++++++++++ templates/index.html | 35 ++++++++++++++++++++++++++++++++--- 2 files changed, 48 insertions(+), 3 deletions(-) diff --git a/static/style.css b/static/style.css index d794a13..1d3c711 100644 --- a/static/style.css +++ b/static/style.css @@ -161,6 +161,22 @@ header { background-color: transparent; margin: 10px; } +.sort-button { + position: relative; + display: inline-flex; + text-decoration: none; + padding: 10px 20px; + border-radius: 5px; + color: #999999; + border: 1px solid #333333; + background-color: transparent; + margin: 10px; + transition: border 0.3s ease, background-color 0.3s ease; +} +.sort-button:hover { + border: 1px solid #FFD3E0; + background-color: #f0f0f007; +} .wrapper { position: relative; diff --git a/templates/index.html b/templates/index.html index 55146eb..3437367 100644 --- a/templates/index.html +++ b/templates/index.html @@ -43,13 +43,16 @@

Latest Jobs:

This list is updated daily. Last update: {{ run_time }}

+
+ + +