|
@@ -0,0 +1,404 @@
|
|
|
|
|
+<!doctype html>
|
|
|
|
|
+<html lang="en">
|
|
|
|
|
+<head>
|
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
|
+ <meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
+ <title>Sprint Planner — Logo concepts</title>
|
|
|
|
|
+ <style>
|
|
|
|
|
+ :root {
|
|
|
|
|
+ --light-bg: #ffffff;
|
|
|
|
|
+ --light-fg: #0f172a;
|
|
|
|
|
+
|
|
|
|
|
+ --dark-bg: #0b1020;
|
|
|
|
|
+ --dark-fg: #e2e8f0;
|
|
|
|
|
+
|
|
|
|
|
+ --page-bg: #f1f5f9;
|
|
|
|
|
+ --page-fg: #0f172a;
|
|
|
|
|
+ --page-mute: #64748b;
|
|
|
|
|
+ --page-card: #ffffff;
|
|
|
|
|
+ --page-line: #e2e8f0;
|
|
|
|
|
+ }
|
|
|
|
|
+ @media (prefers-color-scheme: dark) {
|
|
|
|
|
+ :root {
|
|
|
|
|
+ --page-bg: #060912;
|
|
|
|
|
+ --page-fg: #e2e8f0;
|
|
|
|
|
+ --page-mute: #94a3b8;
|
|
|
|
|
+ --page-card: #0d1424;
|
|
|
|
|
+ --page-line: #1e293b;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ * { box-sizing: border-box; }
|
|
|
|
|
+ html, body { margin: 0; padding: 0; }
|
|
|
|
|
+ body {
|
|
|
|
|
+ background: var(--page-bg);
|
|
|
|
|
+ color: var(--page-fg);
|
|
|
|
|
+ font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
|
|
|
|
|
+ line-height: 1.5;
|
|
|
|
|
+ padding: 32px clamp(16px, 4vw, 48px) 64px;
|
|
|
|
|
+ }
|
|
|
|
|
+ header {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 0 auto 28px;
|
|
|
|
|
+ }
|
|
|
|
|
+ h1 {
|
|
|
|
|
+ margin: 0 0 6px;
|
|
|
|
|
+ font-size: clamp(22px, 3vw, 30px);
|
|
|
|
|
+ letter-spacing: -0.01em;
|
|
|
|
|
+ }
|
|
|
|
|
+ header p {
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ color: var(--page-mute);
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ max-width: 70ch;
|
|
|
|
|
+ }
|
|
|
|
|
+ code {
|
|
|
|
|
+ background: var(--page-card);
|
|
|
|
|
+ border: 1px solid var(--page-line);
|
|
|
|
|
+ padding: 1px 6px;
|
|
|
|
|
+ border-radius: 4px;
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ main {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 0 auto;
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ gap: 20px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .card {
|
|
|
|
|
+ background: var(--page-card);
|
|
|
|
|
+ border: 1px solid var(--page-line);
|
|
|
|
|
+ border-radius: 14px;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ }
|
|
|
|
|
+ .card-header {
|
|
|
|
|
+ padding: 14px 18px;
|
|
|
|
|
+ border-bottom: 1px solid var(--page-line);
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: baseline;
|
|
|
|
|
+ justify-content: space-between;
|
|
|
|
|
+ gap: 12px;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ }
|
|
|
|
|
+ .card-header h2 {
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ font-size: 15px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ }
|
|
|
|
|
+ .card-header .meta {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ color: var(--page-mute);
|
|
|
|
|
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .panes {
|
|
|
|
|
+ display: grid;
|
|
|
|
|
+ grid-template-columns: 1fr 1fr;
|
|
|
|
|
+ }
|
|
|
|
|
+ .pane {
|
|
|
|
|
+ padding: 28px 20px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: space-around;
|
|
|
|
|
+ gap: 16px;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ }
|
|
|
|
|
+ .pane.light {
|
|
|
|
|
+ background: var(--light-bg);
|
|
|
|
|
+ color: var(--light-fg);
|
|
|
|
|
+ }
|
|
|
|
|
+ .pane.dark {
|
|
|
|
|
+ background: var(--dark-bg);
|
|
|
|
|
+ color: var(--dark-fg);
|
|
|
|
|
+ border-left: 1px solid var(--page-line);
|
|
|
|
|
+ }
|
|
|
|
|
+ @media (max-width: 640px) {
|
|
|
|
|
+ .panes { grid-template-columns: 1fr; }
|
|
|
|
|
+ .pane.dark { border-left: none; border-top: 1px solid var(--page-line); }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .sample {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ flex-direction: column;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 8px;
|
|
|
|
|
+ min-width: 0;
|
|
|
|
|
+ }
|
|
|
|
|
+ .sample svg {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ }
|
|
|
|
|
+ .sample .label {
|
|
|
|
|
+ font-size: 11px;
|
|
|
|
|
+ font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
|
|
|
|
|
+ opacity: 0.55;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ .wordmark {
|
|
|
|
|
+ display: inline-flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ gap: 10px;
|
|
|
|
|
+ font-weight: 600;
|
|
|
|
|
+ letter-spacing: -0.01em;
|
|
|
|
|
+ font-size: 18px;
|
|
|
|
|
+ }
|
|
|
|
|
+ .wordmark .name { line-height: 1; }
|
|
|
|
|
+ .wordmark .name small {
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ font-size: 10px;
|
|
|
|
|
+ letter-spacing: 0.08em;
|
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
|
+ font-weight: 500;
|
|
|
|
|
+ opacity: 0.55;
|
|
|
|
|
+ margin-top: 2px;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ footer {
|
|
|
|
|
+ max-width: 1200px;
|
|
|
|
|
+ margin: 32px auto 0;
|
|
|
|
|
+ color: var(--page-mute);
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ }
|
|
|
|
|
+ </style>
|
|
|
|
|
+</head>
|
|
|
|
|
+<body>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- Hidden symbol library — each <symbol> is the body of one .svg file.
|
|
|
|
|
+ Inline use of <symbol> + <use> lets the surrounding pane's CSS `color`
|
|
|
|
|
+ cascade into the SVG, so currentColor flips per-pane. -->
|
|
|
|
|
+ <svg width="0" height="0" style="position:absolute" aria-hidden="true">
|
|
|
|
|
+ <defs>
|
|
|
|
|
+
|
|
|
|
|
+ <symbol id="logo-1" viewBox="0 0 64 64">
|
|
|
|
|
+ <rect x="6" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
|
|
|
|
|
+ <rect x="24.5" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
|
|
|
|
|
+ <rect x="43" y="12" width="15" height="40" rx="3" stroke="currentColor" stroke-width="2.5" fill="none"/>
|
|
|
|
|
+ <rect x="9" y="17" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="9" y="25" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="9" y="33" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="27.5" y="17" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="27.5" y="25" width="9" height="4.5" rx="1.2" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="27.5" y="33" width="9" height="4.5" rx="1.2" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="46" y="17" width="9" height="4.5" rx="1.2" fill="#10b981"/>
|
|
|
|
|
+ <rect x="46" y="25" width="9" height="4.5" rx="1.2" fill="#10b981"/>
|
|
|
|
|
+ <rect x="46" y="33" width="9" height="4.5" rx="1.2" fill="#10b981"/>
|
|
|
|
|
+ </symbol>
|
|
|
|
|
+
|
|
|
|
|
+ <symbol id="logo-2" viewBox="0 0 64 64">
|
|
|
|
|
+ <line x1="6" y1="46" x2="22" y2="46" stroke="currentColor" stroke-width="2" stroke-linecap="round" opacity="0.35"/>
|
|
|
|
|
+ <line x1="10" y1="52" x2="28" y2="52" stroke="currentColor" stroke-width="2" stroke-linecap="round" opacity="0.2"/>
|
|
|
|
|
+ <path d="M14 32 L30 16 L34 20 L22 32 L34 44 L30 48 Z" fill="currentColor" opacity="0.45"/>
|
|
|
|
|
+ <path d="M28 32 L44 16 L48 20 L36 32 L48 44 L44 48 Z" fill="currentColor"/>
|
|
|
|
|
+ <path d="M42 32 L58 16 L62 20 L50 32 L62 44 L58 48 Z" fill="#6366f1"/>
|
|
|
|
|
+ </symbol>
|
|
|
|
|
+
|
|
|
|
|
+ <symbol id="logo-3" viewBox="0 0 64 64">
|
|
|
|
|
+ <path d="M52 32 A20 20 0 1 1 32 12" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" fill="none"/>
|
|
|
|
|
+ <path d="M44 8 L52 12 L48 20" stroke="currentColor" stroke-width="3.5" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
|
|
|
|
+ <circle cx="32" cy="32" r="5" fill="#6366f1"/>
|
|
|
|
|
+ <circle cx="48" cy="20" r="2.5" fill="currentColor" opacity="0.55"/>
|
|
|
|
|
+ <circle cx="52" cy="40" r="2.5" fill="currentColor" opacity="0.55"/>
|
|
|
|
|
+ <circle cx="40" cy="50" r="2.5" fill="currentColor" opacity="0.55"/>
|
|
|
|
|
+ <circle cx="20" cy="48" r="2.5" fill="currentColor" opacity="0.55"/>
|
|
|
|
|
+ <circle cx="14" cy="32" r="2.5" fill="#10b981"/>
|
|
|
|
|
+ </symbol>
|
|
|
|
|
+
|
|
|
|
|
+ <symbol id="logo-4" viewBox="0 0 64 64">
|
|
|
|
|
+ <rect x="8" y="12" width="48" height="44" rx="4" stroke="currentColor" stroke-width="2.5" fill="none"/>
|
|
|
|
|
+ <path d="M8 24 H56" stroke="currentColor" stroke-width="2.5" fill="none"/>
|
|
|
|
|
+ <line x1="20" y1="8" x2="20" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
|
|
|
|
|
+ <line x1="44" y1="8" x2="44" y2="18" stroke="currentColor" stroke-width="3" stroke-linecap="round"/>
|
|
|
|
|
+ <rect x="14" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="23" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="32" y="30" width="6" height="6" rx="1" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="41" y="30" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="14" y="40" width="6" height="6" rx="1" fill="currentColor" opacity="0.35"/>
|
|
|
|
|
+ <rect x="23" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="32" y="40" width="6" height="6" rx="1" fill="#6366f1"/>
|
|
|
|
|
+ <rect x="41" y="40" width="6" height="6" rx="1" fill="#10b981"/>
|
|
|
|
|
+ <path d="M33 43.5 L36 46.5 L41 41" stroke="#fff" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
|
|
|
|
+ </symbol>
|
|
|
|
|
+
|
|
|
|
|
+ <symbol id="logo-5" viewBox="0 0 64 64">
|
|
|
|
|
+ <rect x="4" y="4" width="56" height="56" rx="12" fill="#6366f1"/>
|
|
|
|
|
+ <path d="M28 18 H18 a4 4 0 0 0 -4 4 v4 a4 4 0 0 0 4 4 h6 a4 4 0 0 1 4 4 v4 a4 4 0 0 1 -4 4 H14"
|
|
|
|
|
+ stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
|
|
|
|
+ <path d="M34 46 V18 h10 a7 7 0 0 1 0 14 H34"
|
|
|
|
|
+ stroke="#fff" stroke-width="3.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/>
|
|
|
|
|
+ <circle cx="50" cy="46" r="3" fill="#10b981"/>
|
|
|
|
|
+ </symbol>
|
|
|
|
|
+
|
|
|
|
|
+ </defs>
|
|
|
|
|
+ </svg>
|
|
|
|
|
+
|
|
|
|
|
+ <header>
|
|
|
|
|
+ <h1>Sprint Planner — logo concepts</h1>
|
|
|
|
|
+ <p>Five SVG marks rendered against a light and a dark panel. The primary strokes use <code>currentColor</code> so they invert with the surrounding theme; the indigo and emerald accents are picked to hold contrast on both backgrounds. The standalone <code>.svg</code> files include a <code>svg:root</code> + <code>prefers-color-scheme</code> block so they also adapt when used as a favicon, in a README, or otherwise displayed on their own.</p>
|
|
|
|
|
+ </header>
|
|
|
|
|
+
|
|
|
|
|
+ <main>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="card">
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>1 — Kanban board</h2>
|
|
|
|
|
+ <span class="meta">logo-1-kanban.svg</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="panes">
|
|
|
|
|
+ <div class="pane light">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-1"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Kanban</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pane dark">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-1"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-1"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-1"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Kanban</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="card">
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>2 — Sprint arrow</h2>
|
|
|
|
|
+ <span class="meta">logo-2-sprint.svg</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="panes">
|
|
|
|
|
+ <div class="pane light">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-2"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Velocity</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pane dark">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-2"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-2"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-2"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Velocity</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="card">
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>3 — Sprint cycle</h2>
|
|
|
|
|
+ <span class="meta">logo-3-cycle.svg</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="panes">
|
|
|
|
|
+ <div class="pane light">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-3"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Iterate</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pane dark">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-3"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-3"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-3"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Iterate</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="card">
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>4 — Planner calendar</h2>
|
|
|
|
|
+ <span class="meta">logo-4-calendar.svg</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="panes">
|
|
|
|
|
+ <div class="pane light">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-4"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Schedule</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pane dark">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-4"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-4"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-4"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Schedule</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ <section class="card">
|
|
|
|
|
+ <div class="card-header">
|
|
|
|
|
+ <h2>5 — SP monogram</h2>
|
|
|
|
|
+ <span class="meta">logo-5-monogram.svg</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="panes">
|
|
|
|
|
+ <div class="pane light">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-5"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Monogram</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ <div class="pane dark">
|
|
|
|
|
+ <div class="sample"><svg width="96" height="96"><use href="#logo-5"/></svg><span class="label">96 px</span></div>
|
|
|
|
|
+ <div class="sample"><svg width="48" height="48"><use href="#logo-5"/></svg><span class="label">48 px</span></div>
|
|
|
|
|
+ <div class="sample">
|
|
|
|
|
+ <span class="wordmark">
|
|
|
|
|
+ <svg width="32" height="32"><use href="#logo-5"/></svg>
|
|
|
|
|
+ <span class="name">Sprint Planner<small>Monogram</small></span>
|
|
|
|
|
+ </span>
|
|
|
|
|
+ <span class="label">wordmark</span>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </div>
|
|
|
|
|
+ </section>
|
|
|
|
|
+
|
|
|
|
|
+ </main>
|
|
|
|
|
+
|
|
|
|
|
+ <footer>
|
|
|
|
|
+ Open this file directly in a browser. The page itself follows your system theme; each card always shows a light and a dark sample so you can compare the mark in either context.
|
|
|
|
|
+ </footer>
|
|
|
|
|
+</body>
|
|
|
|
|
+</html>
|