update design: minimal light theme with inline CSS
- switch to bright/light color scheme - inline CSS in head for single-file deployment - show full mesh/signal URLs in monospace - reorganize meetups into upcoming/past sections - add Meshcore section - remove beginner explanatory content
This commit is contained in:
@@ -5,7 +5,9 @@
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
<meta name="description" content="{{ .Site.Params.description }}">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<style>
|
||||
{{ readFile "themes/loravega/static/css/style.css" | safeCSS }}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
{{ block "main" . }}{{ end }}
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
:root {
|
||||
--bg: #0a0a0a;
|
||||
--fg: #e0e0e0;
|
||||
--accent: #4fc3f7;
|
||||
--muted: #888;
|
||||
--bg: #ffffff;
|
||||
--fg: #1a1a1a;
|
||||
--accent: #0066cc;
|
||||
--muted: #666;
|
||||
--max-w: 600px;
|
||||
}
|
||||
|
||||
@@ -32,10 +32,18 @@ h2 {
|
||||
font-size: 1.2rem;
|
||||
margin-top: 2rem;
|
||||
margin-bottom: 0.5rem;
|
||||
border-bottom: 1px solid #222;
|
||||
border-bottom: 1px solid #e0e0e0;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1rem;
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 600;
|
||||
color: var(--muted);
|
||||
}
|
||||
|
||||
ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
@@ -55,8 +63,8 @@ a:hover {
|
||||
}
|
||||
|
||||
.settings {
|
||||
background: #111;
|
||||
border: 1px solid #222;
|
||||
background: #f8f8f8;
|
||||
border: 1px solid #e0e0e0;
|
||||
border-radius: 4px;
|
||||
padding: 1rem;
|
||||
margin-top: 0.5rem;
|
||||
@@ -73,10 +81,15 @@ a:hover {
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.mono-link {
|
||||
font-family: "SF Mono", "Fira Code", "Consolas", monospace;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
footer {
|
||||
margin-top: 3rem;
|
||||
color: var(--muted);
|
||||
font-size: 0.8rem;
|
||||
border-top: 1px solid #222;
|
||||
border-top: 1px solid #e0e0e0;
|
||||
padding-top: 1rem;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user