feat: build dark fantasy application shell

This commit is contained in:
Bastian Wagner
2026-08-18 22:36:21 +02:00
parent 6304703d67
commit b9e5c66c8e
28 changed files with 633 additions and 362 deletions

View File

@@ -0,0 +1,4 @@
<aside class="context-panel" aria-label="Gebietsinformationen">
<span class="context-panel__eyebrow">Gebiet</span>
<p class="context-panel__hint">Informationen erscheinen mit der Weltansicht.</p>
</aside>

View File

@@ -0,0 +1,26 @@
:host {
display: block;
background: var(--ar-panel);
}
.context-panel {
min-block-size: 100%;
padding: var(--ar-space-5);
border-inline-start: 1px solid var(--ar-border);
background: linear-gradient(180deg, rgb(255 255 255 / 0.025), transparent 16%), var(--ar-panel);
}
.context-panel__eyebrow {
display: block;
padding-block-end: var(--ar-space-3);
border-block-end: 1px solid var(--ar-border);
color: var(--ar-gold);
font-family: Georgia, 'Times New Roman', serif;
font-size: 1.25rem;
}
.context-panel__hint {
color: var(--ar-text-muted);
font-size: var(--ar-font-sm);
line-height: 1.55;
}

View File

@@ -0,0 +1,8 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-context-panel',
templateUrl: './context-panel.component.html',
styleUrl: './context-panel.component.scss',
})
export class ContextPanelComponent {}