44 lines
1.8 KiB
HTML
44 lines
1.8 KiB
HTML
|
|
<!doctype html>
|
||
|
|
<!-- @dsCard group="Brand" name="Brand · Wireframe Motif" subtitle="Graph paper + draft stamp" viewport="700x240" -->
|
||
|
|
<html><head>
|
||
|
|
<meta charset="utf-8"><title>Wireframe Motif</title>
|
||
|
|
<link rel="stylesheet" href="../colors_and_type.css">
|
||
|
|
<style>
|
||
|
|
body { padding: 20px; background: var(--paper); margin: 0; }
|
||
|
|
.frame {
|
||
|
|
background: var(--paper-2);
|
||
|
|
background-image:
|
||
|
|
linear-gradient(to right, var(--border-soft) 1px, transparent 1px),
|
||
|
|
linear-gradient(to bottom, var(--border-soft) 1px, transparent 1px);
|
||
|
|
background-size: 16px 16px;
|
||
|
|
border: 1px solid var(--border);
|
||
|
|
padding: 22px 24px;
|
||
|
|
display: grid;
|
||
|
|
grid-template-columns: 200px 1fr;
|
||
|
|
gap: 24px;
|
||
|
|
min-height: 200px;
|
||
|
|
}
|
||
|
|
.frame .stamp { background: var(--hi); color: var(--hi-ink); padding: 6px 10px 4px; font: 500 10px/1 var(--ff-mono); letter-spacing: 0.12em; text-transform: uppercase; transform: rotate(-1.5deg); display: inline-block; align-self: flex-start; }
|
||
|
|
.frame .col { display: flex; flex-direction: column; gap: 12px; }
|
||
|
|
.frame h4 { font: 500 18px/1.2 var(--ff-sans); margin: 0; }
|
||
|
|
.frame .l { height: 10px; background: var(--ink-5); border-radius: 2px; opacity: 0.6; }
|
||
|
|
.frame .l.s { width: 50% } .frame .l.m { width: 75% }
|
||
|
|
.frame .l.x { width: 30% }
|
||
|
|
.frame .meta { font: 500 11px var(--ff-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-3); }
|
||
|
|
</style></head>
|
||
|
|
<body>
|
||
|
|
<div class="frame">
|
||
|
|
<div class="col">
|
||
|
|
<span class="stamp">Draft · WNO-014</span>
|
||
|
|
<span class="meta">Stage 2 · Prototype</span>
|
||
|
|
</div>
|
||
|
|
<div class="col">
|
||
|
|
<h4>A field-notebook for catching weird ideas before they evaporate.</h4>
|
||
|
|
<div class="l m"></div>
|
||
|
|
<div class="l s"></div>
|
||
|
|
<div class="l x"></div>
|
||
|
|
<div class="l m"></div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</body></html>
|