diff --git a/nightreign/index.html b/nightreign/index.html
index 95949fc..d88eb93 100644
--- a/nightreign/index.html
+++ b/nightreign/index.html
@@ -9,8 +9,8 @@
@@ -36,14 +36,14 @@
SPOILER WARNING
Map patterns by Nightlord
Each Nightlord has 40 map patterns: 20 without any Shifting Earth, plus 5 per Shifting Earth.
Spreadsheet
Elden Ring Nightreign map patterns contains a dump of all map patterns. I named the map locations mostly based on corresponding Limgrave landmarks.
diff --git a/nightreign/libra/index.html b/nightreign/libra/index.html
index d119b0a..fd88563 100644
--- a/nightreign/libra/index.html
+++ b/nightreign/libra/index.html
@@ -36,6 +36,7 @@
SPOILER WARNING
+
Up

160

161
diff --git a/nightreign/maris/index.html b/nightreign/maris/index.html
index a7761f9..8fd284c 100644
--- a/nightreign/maris/index.html
+++ b/nightreign/maris/index.html
@@ -36,6 +36,7 @@
SPOILER WARNING
+
Up

120

121
From 65ab8737e7af33ef1f8115e21e1ccae3a0358a74 Mon Sep 17 00:00:00 2001
From: Henry Graff
Date: Fri, 18 Jul 2025 17:49:18 -0700
Subject: [PATCH 2/5] Add QoL changes and fancier CSS
---
nightreign/site.css | 89 +++++++++++++++++++++++++++++++++++++++++----
1 file changed, 81 insertions(+), 8 deletions(-)
diff --git a/nightreign/site.css b/nightreign/site.css
index fffe80e..9a098ba 100644
--- a/nightreign/site.css
+++ b/nightreign/site.css
@@ -10,7 +10,8 @@ body {
#root {
margin: 20px auto 20px auto;
padding: 0.05px 20px 20px 20px;
- background-color: #e9e5f2;
+ /*background-color: #e9e5f2;*/
+ background-image: linear-gradient(110deg, #e6e6e6, #dfdfdf);
}
#root.column {
max-width: 1100px;
@@ -34,10 +35,18 @@ body {
margin: 0.5em 0 0.2em 0;
text-align: center;
}
+
+.centerLink {
+ display: block;
+ margin: 0.5em 0 0.2em 0;
+ text-align: center;
+}
+
.bosssort {
margin: 0.5em 0 0.5em 0;
text-align: center;
}
+
.nav {
margin: 0 0 0.2em 0;
text-align: center;
@@ -61,7 +70,10 @@ p {
margin: 0.5em 0;
}
-a.plain:link, a.plain:visited, a.plain:hover, a.plain:active {
+a.plain:link,
+a.plain:visited,
+a.plain:hover,
+a.plain:active {
color: inherit;
text-decoration: none;
}
@@ -69,35 +81,75 @@ a.plain:link, a.plain:visited, a.plain:hover, a.plain:active {
#idgrid {
display: grid;
grid-template-columns: repeat(5, 1fr);
- grid-column-gap: 7px;
+ grid-column-gap: 20px;
+ grid-row-gap: 25px;
margin-bottom: 15px;
+ margin-top: 25px;
+}
+#idgrid .thumb {
+ animation: gridbox-hover-down-filter 0.4s ease-in-out both;
+ filter: saturate(95%) brightness(95%);
+}
+#idgrid .thumb:hover,
+#idgrid .thumb:focus {
+ animation: gridbox-hover-up-filter 0.4s ease-in-out both;
}
-
#idgrid .thumb img {
width: 100%;
vertical-align: middle;
+ padding: 2px;
+ border: 2px solid black;
+ box-shadow: 5px 5px black;
}
-
-.thumb div.id {
+#idgrid .thumb img:hover,
+#idgrid .thumb img:focus {
+ box-shadow: 5px 5px black;
+}
+#idgrid .thumb div.id {
text-align: center;
vertical-align: bottom;
+ margin-top: 3px;
}
#spawngrid {
display: flex;
flex-wrap: wrap;
}
-
+#spawngrid .thumb {
+ animation: gridbox-hover-down-filter 0.4s ease-in-out both;
+ filter: saturate(95%) brightness(95%);
+ margin: auto;
+}
+#spawngrid .thumb:hover,
+#spawngrid .thumb:focus {
+ animation: gridbox-hover-up-filter 0.4s ease-in-out both;
+}
#spawngrid .thumb img {
width: 100%;
- max-width: 22vw;
+ max-width: 20vw;
vertical-align: middle;
+ padding: 2px;
+ margin: 1.5px 3px;
+ border: 2px solid black;
+ box-shadow: 5px 5px black;
+}
+#spawngrid .thumb div.id {
+ text-align: center;
+ vertical-align: bottom;
+ margin-top: 3px;
}
.spawnset {
display: flex;
column-gap: 7px;
max-width: 100%;
+ min-height: fit-content;
+}
+
+@media only screen and (min-width: 1101px) {
+ .spawnset {
+ padding: 13px;
+ }
}
.viewer {
@@ -118,3 +170,24 @@ a.plain:link, a.plain:visited, a.plain:hover, a.plain:active {
margin: auto;
cursor: zoom-out;
}
+
+@keyframes gridbox-hover-up-filter {
+ 0% {
+ transform: translate(0px, 0px);
+ filter: saturate(95%) brightness(95%);
+ }
+ 100% {
+ transform: translate(0px, -10px);
+ filter: saturate(120%) brightness(105%);
+ }
+}
+
+@keyframes gridbox-hover-down-filter {
+ 0% {
+ transform: translate(0px, 0px);
+ filter: saturate(95%) brightness(95%);
+ }
+ 100% {
+ transform: translate(0px, 10px);
+ }
+}
\ No newline at end of file
From 8e1e5e1b189b9680a538257a699a5b43abba3446 Mon Sep 17 00:00:00 2001
From: 5Stygian <121655781+5Stygian@users.noreply.github.com>
Date: Fri, 18 Jul 2025 17:50:58 -0700
Subject: [PATCH 3/5] Rename nightreign/index.html to index.html
---
nightreign/index.html => index.html | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename nightreign/index.html => index.html (100%)
diff --git a/nightreign/index.html b/index.html
similarity index 100%
rename from nightreign/index.html
rename to index.html
From 67f0bfc645ebaa0ff93d2251fbee6a03c8d21a88 Mon Sep 17 00:00:00 2001
From: 5Stygian <121655781+5Stygian@users.noreply.github.com>
Date: Fri, 18 Jul 2025 17:51:18 -0700
Subject: [PATCH 4/5] Rename index.html to nightriegn/index.html
---
index.html => nightriegn/index.html | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename index.html => nightriegn/index.html (100%)
diff --git a/index.html b/nightriegn/index.html
similarity index 100%
rename from index.html
rename to nightriegn/index.html
From 9ec8cf4a118e9cbac37d17cca54bf57b35e60985 Mon Sep 17 00:00:00 2001
From: 5Stygian <121655781+5Stygian@users.noreply.github.com>
Date: Fri, 18 Jul 2025 17:51:49 -0700
Subject: [PATCH 5/5] Rename index.html to index.html
---
{nightriegn => nightreign}/index.html | 0
1 file changed, 0 insertions(+), 0 deletions(-)
rename {nightriegn => nightreign}/index.html (100%)
diff --git a/nightriegn/index.html b/nightreign/index.html
similarity index 100%
rename from nightriegn/index.html
rename to nightreign/index.html