From 2c2c0a923cd351f121488615a971d0feb365dad6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ad=C3=A1m=20Brudzewsky?= Date: Tue, 19 Mar 2024 02:23:35 +0100 Subject: [PATCH] typos and tweaks --- _includes/navbar.html | 2 +- _psets/2023.md | 2 +- css/style.scss | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/_includes/navbar.html b/_includes/navbar.html index 8fa4753..a166869 100644 --- a/_includes/navbar.html +++ b/_includes/navbar.html @@ -11,7 +11,7 @@ let b = document.querySelectorAll(".pbutton");b[0].classList.add("active"); let pt = document.querySelectorAll("h2"); for (i=0; i(""+x+""))) }; - document.title = {{ page.title }} + " P" + pt[0].innerHTML + " - APL Quest"; + document.title = {{ page.title }} + "-" + pt[0].innerHTML + " - APL Quest"; s=new URLSearchParams(location.search) // Options from URL console.log(s.get("goto")) if (expr = s.get("goto")) {show(expr)}; diff --git a/_psets/2023.md b/_psets/2023.md index dd291ae..3de3416 100644 --- a/_psets/2023.md +++ b/_psets/2023.md @@ -20,7 +20,7 @@ problems:

An "Elimination Sort" is a somewhat farcical sorting algorithm which starts with the leftmost element and keeps subsequent elements that are at least as large as the previous kept element, discarding all other elements. For example:

EliminationSort 1 3 7 3 5 8 5 8 1 6 1 8 1 10 8 4 3 4 1 4
 1 3 7 8 8 8 10 
diff --git a/css/style.scss b/css/style.scss
index 6e5f7f9..54e31c2 100644
--- a/css/style.scss
+++ b/css/style.scss
@@ -90,8 +90,8 @@ a:hover {border-bottom: 0.25ex solid currentColor;}
     border-radius: 0;    
     padding: 1.4rem 1.25rem;
     margin-bottom: -1px;
-    background-color: #3b4252;
-    border: 1px solid rgba(0,0,0,.125);
+    background-color: #434c5e;
+    border: 1px solid #2e3440;
 }
 #navbar > .pbutton { 
     text-align: left;