Compare commits
7 Commits
v1.0.1
..
1a0ffead5a
| Author | SHA1 | Date | |
|---|---|---|---|
| 1a0ffead5a | |||
| 719956341c | |||
| 2a1e6dc8a4 | |||
| 6b19a55655 | |||
| a2b9d445e4 | |||
| a14306cce4 | |||
| 43f42a8274 |
+1
-1
@@ -1,7 +1,7 @@
|
|||||||
# Lightweight, non-root nginx serving the static site.
|
# Lightweight, non-root nginx serving the static site.
|
||||||
# Runs as user "nginx" and listens on 8080, ready to sit behind an
|
# Runs as user "nginx" and listens on 8080, ready to sit behind an
|
||||||
# external reverse proxy that terminates TLS and forwards requests.
|
# external reverse proxy that terminates TLS and forwards requests.
|
||||||
FROM nginxinc/nginx-unprivileged:1.27-alpine-slim
|
FROM nginxinc/nginx-unprivileged:1.31-alpine-slim@sha256:6616de6eaa82bc2ee3541fa287a8fca7dc7271e6374e9402014dbd13f4a980ae
|
||||||
|
|
||||||
COPY default.conf /etc/nginx/conf.d/default.conf
|
COPY default.conf /etc/nginx/conf.d/default.conf
|
||||||
COPY --chown=nginx:nginx index.html styles.css script.js messages.js /usr/share/nginx/html/
|
COPY --chown=nginx:nginx index.html styles.css script.js messages.js /usr/share/nginx/html/
|
||||||
|
|||||||
+9
-4
@@ -11,8 +11,13 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
const MESSAGES = [
|
const MESSAGES = [
|
||||||
"PLACEHOLDER: write your first reason here",
|
"Maggie came back, she was unimpressed",
|
||||||
"PLACEHOLDER: write another reason here",
|
"They mixed up the B23s and the 2024 tube stock",
|
||||||
// Add as many entries as you like, one per line:
|
"The computer went on strike",
|
||||||
// "Your reason here",
|
"Leaves on the track",
|
||||||
|
"Escalators broke at Cutty Sark",
|
||||||
|
"EHRC decided it was woke",
|
||||||
|
"JK Rowling",
|
||||||
|
"Kaiju",
|
||||||
|
"28 Days Later happened",
|
||||||
];
|
];
|
||||||
|
|||||||
+8
-10
@@ -10,7 +10,6 @@
|
|||||||
/* Modern DLR — turquoise/teal */
|
/* Modern DLR — turquoise/teal */
|
||||||
[data-theme="modern"] {
|
[data-theme="modern"] {
|
||||||
--bg: #00afaa;
|
--bg: #00afaa;
|
||||||
--bg-accent: #007e7a;
|
|
||||||
--surface: #ffffff;
|
--surface: #ffffff;
|
||||||
--text: #ffffff;
|
--text: #ffffff;
|
||||||
--message: #ffffff;
|
--message: #ffffff;
|
||||||
@@ -20,17 +19,16 @@
|
|||||||
--button-active-text: #ffffff;
|
--button-active-text: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Original DLR — 1987 red and blue */
|
/* Original DLR — 1987 red, white and blue */
|
||||||
[data-theme="original"] {
|
[data-theme="original"] {
|
||||||
--bg: #002b5c;
|
--bg: #f5f0e1;
|
||||||
--bg-accent: #c8102e;
|
--surface: #002b5c;
|
||||||
--surface: #f5f0e1;
|
--text: #002b5c;
|
||||||
--text: #f5f0e1;
|
--message: #002b5c;
|
||||||
--message: #f5f0e1;
|
|
||||||
--button-bg: #c8102e;
|
--button-bg: #c8102e;
|
||||||
--button-text: #f5f0e1;
|
--button-text: #f5f0e1;
|
||||||
--button-active-bg: #f5f0e1;
|
--button-active-bg: #002b5c;
|
||||||
--button-active-text: #002b5c;
|
--button-active-text: #f5f0e1;
|
||||||
}
|
}
|
||||||
|
|
||||||
* {
|
* {
|
||||||
@@ -44,7 +42,7 @@ body {
|
|||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
font-family: var(--font-stack);
|
font-family: var(--font-stack);
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
background: linear-gradient(135deg, var(--bg) 0%, var(--bg-accent) 100%);
|
background: var(--bg);
|
||||||
transition: background 0.4s ease, color 0.4s ease;
|
transition: background 0.4s ease, color 0.4s ease;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user