dev-api: add developer portal, OpenAPI spec, and Flatenbadet case study
- New /developers/ page with API docs, SDKs, pricing, use cases - OpenAPI 3.0 spec for Orders, Missions, Photos, Analytics - Case study: Glasskiosken i Flatenbadet — complete ROI analysis - Updated /order/ with recurring missions and frequency dropdown
This commit is contained in:
@@ -367,6 +367,103 @@ main {
|
||||
/* HIDDEN during search */
|
||||
.term-card.hidden { display: none; }
|
||||
.letter-section.hidden { display: none; }
|
||||
/* QUIXZOOM STANDARD — Dark Theme */
|
||||
:root {
|
||||
--qz-bg: #0a0a0a;
|
||||
--qz-surface: #111111;
|
||||
--qz-surface-2: #1a1a1a;
|
||||
--qz-border: rgba(255,255,255,0.08);
|
||||
--qz-text: #e8e8e8;
|
||||
--qz-text-dim: #a0a0a0;
|
||||
--qz-text-muted: #6b6b6b;
|
||||
--qz-blue: #007AFF;
|
||||
--qz-blue-dark: #0056CC;
|
||||
--qz-radius: 10px;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
|
||||
background: var(--qz-bg);
|
||||
color: var(--qz-text);
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.qz-nav {
|
||||
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
padding: 0 24px; height: 56px;
|
||||
background: rgba(255,255,255,0.92);
|
||||
backdrop-filter: blur(16px);
|
||||
border-bottom: 1px solid var(--qz-border);
|
||||
}
|
||||
|
||||
.qz-nav-logo { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; }
|
||||
.qz-nav-links { display: flex; gap: 24px; list-style: none; }
|
||||
.qz-nav-links a { font-size: 14px; color: var(--qz-text-dim); text-decoration: none; transition: color 0.2s; }
|
||||
.qz-nav-links a:hover { color: #fff; }
|
||||
|
||||
/* Buttons */
|
||||
.qz-btn {
|
||||
display: inline-flex; align-items: center; gap: 6px;
|
||||
padding: 12px 24px; border-radius: var(--qz-radius);
|
||||
font-size: 15px; font-weight: 600; text-decoration: none;
|
||||
transition: all 0.2s; cursor: pointer; border: none;
|
||||
}
|
||||
|
||||
.qz-btn-primary {
|
||||
background: var(--qz-blue); color: #fff;
|
||||
}
|
||||
.qz-btn-primary:hover {
|
||||
background: var(--qz-blue-dark); transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.qz-btn-ghost {
|
||||
background: transparent; color: var(--qz-text);
|
||||
border: 1px solid var(--qz-border);
|
||||
}
|
||||
.qz-btn-ghost:hover {
|
||||
border-color: var(--qz-blue); color: var(--qz-blue);
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.qz-card {
|
||||
background: var(--qz-surface);
|
||||
border: 1px solid var(--qz-border);
|
||||
border-radius: var(--qz-radius);
|
||||
padding: 24px;
|
||||
transition: transform 0.2s, border-color 0.2s;
|
||||
}
|
||||
.qz-card:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(0,122,255,0.3);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.qz-footer {
|
||||
border-top: 1px solid var(--qz-border);
|
||||
padding: 40px 24px;
|
||||
text-align: center;
|
||||
color: var(--qz-text-dim);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
.qz-banner {
|
||||
background: #001E50;
|
||||
color: rgba(255,255,255,0.55);
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.qz-banner a { color: rgba(255,255,255,0.8); text-decoration: none; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.qz-nav-links { display: none; }
|
||||
}
|
||||
</style>
|
||||
<link rel="canonical" href="https://www.quixzoom.com/glossary">
|
||||
<meta name="robots" content="index, follow">
|
||||
@@ -389,12 +486,109 @@ main {
|
||||
.grid { grid-template-columns: 1fr !important; }
|
||||
.btn { padding: 0.75rem 1.5rem !important; font-size: 1rem !important; }
|
||||
}
|
||||
/* QUIXZOOM STANDARD — Dark Theme */
|
||||
:root {
|
||||
--qz-bg: #0a0a0a;
|
||||
--qz-surface: #111111;
|
||||
--qz-surface-2: #1a1a1a;
|
||||
--qz-border: rgba(255,255,255,0.08);
|
||||
--qz-text: #e8e8e8;
|
||||
--qz-text-dim: #a0a0a0;
|
||||
--qz-text-muted: #6b6b6b;
|
||||
--qz-blue: #007AFF;
|
||||
--qz-blue-dark: #0056CC;
|
||||
--qz-radius: 10px;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
|
||||
background: var(--qz-bg);
|
||||
color: var(--qz-text);
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.qz-nav {
|
||||
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
padding: 0 24px; height: 56px;
|
||||
background: rgba(255,255,255,0.92);
|
||||
backdrop-filter: blur(16px);
|
||||
border-bottom: 1px solid var(--qz-border);
|
||||
}
|
||||
|
||||
.qz-nav-logo { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; }
|
||||
.qz-nav-links { display: flex; gap: 24px; list-style: none; }
|
||||
.qz-nav-links a { font-size: 14px; color: var(--qz-text-dim); text-decoration: none; transition: color 0.2s; }
|
||||
.qz-nav-links a:hover { color: #fff; }
|
||||
|
||||
/* Buttons */
|
||||
.qz-btn {
|
||||
display: inline-flex; align-items: center; gap: 6px;
|
||||
padding: 12px 24px; border-radius: var(--qz-radius);
|
||||
font-size: 15px; font-weight: 600; text-decoration: none;
|
||||
transition: all 0.2s; cursor: pointer; border: none;
|
||||
}
|
||||
|
||||
.qz-btn-primary {
|
||||
background: var(--qz-blue); color: #fff;
|
||||
}
|
||||
.qz-btn-primary:hover {
|
||||
background: var(--qz-blue-dark); transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.qz-btn-ghost {
|
||||
background: transparent; color: var(--qz-text);
|
||||
border: 1px solid var(--qz-border);
|
||||
}
|
||||
.qz-btn-ghost:hover {
|
||||
border-color: var(--qz-blue); color: var(--qz-blue);
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.qz-card {
|
||||
background: var(--qz-surface);
|
||||
border: 1px solid var(--qz-border);
|
||||
border-radius: var(--qz-radius);
|
||||
padding: 24px;
|
||||
transition: transform 0.2s, border-color 0.2s;
|
||||
}
|
||||
.qz-card:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(0,122,255,0.3);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.qz-footer {
|
||||
border-top: 1px solid var(--qz-border);
|
||||
padding: 40px 24px;
|
||||
text-align: center;
|
||||
color: var(--qz-text-dim);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
.qz-banner {
|
||||
background: #001E50;
|
||||
color: rgba(255,255,255,0.55);
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.qz-banner a { color: rgba(255,255,255,0.8); text-decoration: none; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.qz-nav-links { display: none; }
|
||||
}
|
||||
</style>
|
||||
<script type="module" src="https://auth.quixzoom.com/site-auth-snippet.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<nav class="nav">
|
||||
<nav class="qz-nav" class="nav">
|
||||
<a href="/" class="nav-logo">qui<span class="x">X</span>zoom</a>
|
||||
<div class="nav-divider"></div>
|
||||
<span class="nav-title">Glossary</span>
|
||||
@@ -405,7 +599,7 @@ main {
|
||||
</svg>
|
||||
<input type="search" id="glossary-search" placeholder="Search terms…" autocomplete="off" aria-label="Search glossary">
|
||||
</div>
|
||||
<nav class="nav-az" id="az-nav" aria-label="Jump to letter">
|
||||
<nav class="qz-nav" class="nav-az" id="az-nav" aria-label="Jump to letter">
|
||||
<a href="#a">A</a><a href="#b" class="empty">B</a><a href="#c">C</a><a href="#d">D</a>
|
||||
<a href="#e">E</a><a href="#f">F</a><a href="#g">G</a><a href="#h">H</a>
|
||||
<a href="#i">I</a><a href="#j">J</a><a href="#k">K</a><a href="#l">L</a>
|
||||
@@ -417,7 +611,7 @@ main {
|
||||
</nav>
|
||||
|
||||
<main>
|
||||
<header class="page-header">
|
||||
<header class="qz-nav" class="page-header">
|
||||
<h1>Every term.<br>Defined.</h1>
|
||||
<p>The complete ecosystem reference — from field observations to decision intelligence. Covering quiXzoom, AMOS, and Landvex.</p>
|
||||
</header>
|
||||
@@ -2218,10 +2412,10 @@ sections.forEach(s => observer.observe(s));
|
||||
})();
|
||||
</script>
|
||||
|
||||
<footer style="background:#0d0d10;border-top:1px solid rgba(255,255,255,.07);padding:32px 24px;margin-top:48px">
|
||||
<footer class="qz-footer" style="background:#0d0d10;border-top:1px solid rgba(255,255,255,.07);padding:32px 24px;margin-top:48px">
|
||||
<div style="max-width:1080px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px">
|
||||
<a href="/" style="font-size:1.1rem;font-weight:800;color:#fff;letter-spacing:-.03em;text-decoration:none">qui<span style="color:#3b82f6">X</span>zoom</a>
|
||||
<nav style="display:flex;gap:20px;flex-wrap:wrap">
|
||||
<nav class="qz-nav" style="display:flex;gap:20px;flex-wrap:wrap">
|
||||
<a href="/" style="font-size:.8125rem;color:rgba(255,255,255,.75);transition:color .15s;text-decoration:none">For Zoomers</a>
|
||||
<a href="/for-organisations/" style="font-size:.8125rem;color:rgba(255,255,255,.75);transition:color .15s;text-decoration:none">For Organisations</a>
|
||||
<a href="/pricing" style="font-size:.8125rem;color:rgba(255,255,255,.75);transition:color .15s;text-decoration:none">Pricing</a>
|
||||
@@ -2363,6 +2557,103 @@ sections.forEach(s => observer.observe(s));
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* QUIXZOOM STANDARD — Dark Theme */
|
||||
:root {
|
||||
--qz-bg: #0a0a0a;
|
||||
--qz-surface: #111111;
|
||||
--qz-surface-2: #1a1a1a;
|
||||
--qz-border: rgba(255,255,255,0.08);
|
||||
--qz-text: #e8e8e8;
|
||||
--qz-text-dim: #a0a0a0;
|
||||
--qz-text-muted: #6b6b6b;
|
||||
--qz-blue: #007AFF;
|
||||
--qz-blue-dark: #0056CC;
|
||||
--qz-radius: 10px;
|
||||
}
|
||||
|
||||
* { margin: 0; padding: 0; box-sizing: border-box; }
|
||||
|
||||
body {
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
|
||||
background: var(--qz-bg);
|
||||
color: var(--qz-text);
|
||||
line-height: 1.6;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
|
||||
/* Navigation */
|
||||
.qz-nav {
|
||||
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
|
||||
display: flex; align-items: center; justify-content: space-between;
|
||||
padding: 0 24px; height: 56px;
|
||||
background: rgba(255,255,255,0.92);
|
||||
backdrop-filter: blur(16px);
|
||||
border-bottom: 1px solid var(--qz-border);
|
||||
}
|
||||
|
||||
.qz-nav-logo { font-size: 18px; font-weight: 700; color: #fff; text-decoration: none; }
|
||||
.qz-nav-links { display: flex; gap: 24px; list-style: none; }
|
||||
.qz-nav-links a { font-size: 14px; color: var(--qz-text-dim); text-decoration: none; transition: color 0.2s; }
|
||||
.qz-nav-links a:hover { color: #fff; }
|
||||
|
||||
/* Buttons */
|
||||
.qz-btn {
|
||||
display: inline-flex; align-items: center; gap: 6px;
|
||||
padding: 12px 24px; border-radius: var(--qz-radius);
|
||||
font-size: 15px; font-weight: 600; text-decoration: none;
|
||||
transition: all 0.2s; cursor: pointer; border: none;
|
||||
}
|
||||
|
||||
.qz-btn-primary {
|
||||
background: var(--qz-blue); color: #fff;
|
||||
}
|
||||
.qz-btn-primary:hover {
|
||||
background: var(--qz-blue-dark); transform: translateY(-1px);
|
||||
}
|
||||
|
||||
.qz-btn-ghost {
|
||||
background: transparent; color: var(--qz-text);
|
||||
border: 1px solid var(--qz-border);
|
||||
}
|
||||
.qz-btn-ghost:hover {
|
||||
border-color: var(--qz-blue); color: var(--qz-blue);
|
||||
}
|
||||
|
||||
/* Cards */
|
||||
.qz-card {
|
||||
background: var(--qz-surface);
|
||||
border: 1px solid var(--qz-border);
|
||||
border-radius: var(--qz-radius);
|
||||
padding: 24px;
|
||||
transition: transform 0.2s, border-color 0.2s;
|
||||
}
|
||||
.qz-card:hover {
|
||||
transform: translateY(-2px);
|
||||
border-color: rgba(0,122,255,0.3);
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.qz-footer {
|
||||
border-top: 1px solid var(--qz-border);
|
||||
padding: 40px 24px;
|
||||
text-align: center;
|
||||
color: var(--qz-text-dim);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
/* Banner */
|
||||
.qz-banner {
|
||||
background: #001E50;
|
||||
color: rgba(255,255,255,0.55);
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
font-size: 12px;
|
||||
}
|
||||
.qz-banner a { color: rgba(255,255,255,0.8); text-decoration: none; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.qz-nav-links { display: none; }
|
||||
}
|
||||
</style>
|
||||
|
||||
<div id="qz-auth-bar" class="qz-auth-bar">
|
||||
|
||||
Reference in New Issue
Block a user