current branding

This commit is contained in:
Raven Scott
2026-05-30 21:01:31 -04:00
parent 841d814f13
commit 416c678471
101 changed files with 689 additions and 121 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,29 @@
/* P2NS brand lockup — shared plugin branding */
.brand-lockup {
display: flex;
align-items: center;
gap: 0.75rem;
min-width: 0;
}
.brand-lockup--center {
flex-direction: column;
justify-content: center;
text-align: center;
}
.brand-lockup-logo {
width: 2rem;
height: 2rem;
object-fit: contain;
flex-shrink: 0;
}
.brand-lockup--center .brand-lockup-logo {
width: 2.5rem;
height: 2.5rem;
}
.brand-lockup-text {
min-width: 0;
}
@@ -144,9 +144,36 @@ body {
}
.header-content {
display: flex;
flex-direction: column;
align-items: flex-start;
flex: 1;
min-width: 0;
}
.header-brand {
display: grid;
grid-template-columns: 2rem minmax(0, 1fr);
column-gap: 0.75rem;
row-gap: 0.25rem;
}
.header-brand .brand-lockup-logo {
grid-column: 1;
grid-row: 1;
align-self: start;
margin-top: 0.15rem;
}
.header-brand h1 {
grid-column: 2;
grid-row: 1;
margin: 0;
min-width: 0;
line-height: 1.2;
}
.header-brand .subtitle {
grid-column: 2;
grid-row: 2;
margin: 0;
}
.header h1 {
@@ -156,7 +183,7 @@ body {
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin-bottom: 0.25rem;
margin-bottom: 0;
}
.header-status {
@@ -1011,6 +1038,27 @@ canvas {
/* Responsive */
@media (max-width: 768px) {
.header {
padding: var(--spacing-md) var(--spacing-lg);
flex-wrap: wrap;
}
.header h1 {
font-size: 1.5rem;
}
.header-content {
flex: 1 1 100%;
width: 100%;
}
.header-status {
flex: 1 1 100%;
margin-top: var(--spacing-sm);
width: 100%;
justify-content: flex-end;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

+8 -2
View File
@@ -3,9 +3,14 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#000000">
<meta name="theme-color" content="#0a0e1a">
<title>Domain Consensus - P2NS</title>
<link rel="icon" href="/favicon.ico" sizes="32x32">
<link rel="icon" href="/branding/p2ns-favicon-32.png" type="image/png" sizes="32x32">
<link rel="icon" href="/branding/p2ns-favicon-192.png" type="image/png" sizes="192x192">
<link rel="apple-touch-icon" href="/branding/p2ns-favicon-192.png">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="/css/branding.css">
<link rel="stylesheet" href="/css/tailwind.css">
<link rel="stylesheet" href="/css/style.css">
<link rel="stylesheet" href="https://global.profile/css/profile-modal.css">
@@ -15,7 +20,8 @@
<div class="container">
<!-- Header -->
<header class="header">
<div class="header-content">
<div class="header-content header-brand">
<img src="/branding/p2ns-icon.png" alt="" class="brand-lockup-logo" width="32" height="32">
<h1>Domain Consensus</h1>
</div>
<div class="header-status">
@@ -4,24 +4,23 @@
"description": "Advanced interface for viewing and analyzing consensus within the P2NS network",
"start_url": "/",
"display": "standalone",
"background_color": "#000000",
"theme_color": "#000000",
"background_color": "#0a0e1a",
"theme_color": "#0a0e1a",
"orientation": "any",
"icons": [
{
"src": "/icon.svg",
"sizes": "any",
"type": "image/svg+xml",
"purpose": "any"
"src": "/favicon.ico",
"sizes": "32x32",
"type": "image/png"
},
{
"src": "/icon-192.png",
"src": "/branding/p2ns-favicon-192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "any maskable"
},
{
"src": "/icon-512.png",
"src": "/branding/p2ns-favicon-512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "any maskable"
@@ -30,4 +29,3 @@
"categories": ["utilities", "developer"],
"lang": "en"
}