summaryrefslogtreecommitdiff
path: root/makima/frontend
diff options
context:
space:
mode:
Diffstat (limited to 'makima/frontend')
-rw-r--r--makima/frontend/public/index.html42
-rw-r--r--makima/frontend/public/logo.svg8
2 files changed, 34 insertions, 16 deletions
diff --git a/makima/frontend/public/index.html b/makima/frontend/public/index.html
index a7289f5..35d2b64 100644
--- a/makima/frontend/public/index.html
+++ b/makima/frontend/public/index.html
@@ -7,21 +7,9 @@
<title>makima.jp | 準備中 — Under Construction</title>
<link rel="canonical" href="https://makima.jp/" />
<!-- Prefer site-root favicon when served with parent site; fallback for local file preview -->
- <link
- rel="icon"
- href="/logo/crane-logo-transparent.png"
- type="image/png"
- />
- <link
- rel="icon"
- href="./logo/crane-logo-transparent.png"
- type="image/png"
- />
- <link
- rel="shortcut icon"
- href="./logo/crane-logo-transparent.png"
- type="image/png"
- />
+ <link rel="icon" href="/logo.svg" type="image/svg+xml" sizes="any" />
+ <link rel="icon" href="./logo.svg" type="image/svg+xml" sizes="any" />
+ <link rel="shortcut icon" href="./logo.svg" type="image/svg+xml" sizes="any" />
<meta
name="description"
content="本ページは現在準備中です。しばらくお待ちください。"
@@ -58,6 +46,17 @@
color: #003366;
letter-spacing: 0.08em;
}
+ /* Simple inline logo to the left of the title */
+ .masthead .logo-mark {
+ display: inline-block;
+ width: 22px;
+ height: 22px;
+ margin-right: 8px;
+ vertical-align: -3px; /* align with text baseline for 90s feel */
+ }
+ .masthead .logo-mark svg {
+ display: block;
+ }
.masthead small {
display: block;
color: #4d4d4d;
@@ -121,7 +120,18 @@
<body>
<div class="frame" role="main">
<div class="masthead">
- <h1>makima.jp 情報公開ページ(準備中)</h1>
+ <h1>
+ <span class="logo-mark" aria-hidden="true">
+ <!-- Three concentric circles, matching theme color -->
+ <svg width="22" height="22" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg" role="img" focusable="false">
+ <circle cx="12" cy="12" r="10" fill="none" stroke="#003366" stroke-width="2" />
+ <circle cx="12" cy="12" r="7" fill="none" stroke="#003366" stroke-width="1.6" />
+ <circle cx="12" cy="12" r="4" fill="none" stroke="#003366" stroke-width="1.6" />
+ <circle cx="12" cy="12" r="1.6" fill="#003366" />
+ </svg>
+ </span>
+ makima.jp 情報公開ページ(準備中)
+ </h1>
<small
>Makima Information Service Portal — Under
Construction</small
diff --git a/makima/frontend/public/logo.svg b/makima/frontend/public/logo.svg
new file mode 100644
index 0000000..826197e
--- /dev/null
+++ b/makima/frontend/public/logo.svg
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none">
+ <circle cx="12" cy="12" r="10" stroke="#003366" stroke-width="2" />
+ <circle cx="12" cy="12" r="7" stroke="#003366" stroke-width="1.6" />
+ <circle cx="12" cy="12" r="4" stroke="#003366" stroke-width="1.6" />
+ <circle cx="12" cy="12" r="1.6" fill="#003366" />
+ <!-- makima.jp concentric-circle logo mark -->
+</svg>