source: Klonkt/src/views/pages/viewer-blocked.ejs@ 0850535

main
Last change on this file since 0850535 was 4885eab, checked in by roboburr <roboburr@…>, 3 months ago

feat(i18n phase 6): remaining public + other pages translated (NL/EN/DE)

post-edit, account, newsletter, download, press kit /pers, fan-gate, link-in-bio,
my-site, password-reset (2), artists directory, auth-login Google error map,
user/hub-home/circle-feed+post/viewer-blocked/home/favourites/changelog/404/
type/tag/archive/prutter (inbox+conversation). embed-player skipped (no t
in that standalone route). 1026 view-keys cross-checked → 0 missing.

Co-Authored-By: Claude <noreply@…>

  • Property mode set to 100644
File size: 1.9 KB
RevLine 
[8afbdd6]1<div class="container vb-page">
2 <div class="vb-card">
3 <div class="vb-ico" aria-hidden="true">👁️</div>
[4885eab]4 <h1 class="vb-title"><%= t('vblk.title') %></h1>
[8afbdd6]5 <p class="vb-text">
[4885eab]6 <%= t('vblk.text_before') %>
7 <strong><%= t('vblk.text_strong') %></strong> <%= t('vblk.text_after') %>
[8afbdd6]8 </p>
9 <div class="vb-actions">
[4885eab]10 <button type="button" class="vb-btn vb-btn-primary" onclick="history.back()">← <%= t('vblk.back') %></button>
11 <a class="vb-btn" href="/"><%= t('vblk.to_home') %></a>
[8afbdd6]12 </div>
13 </div>
14</div>
15
16<style>
17.vb-page { max-width: 540px; margin: 3rem auto 4rem; padding: 0 1rem; }
18.vb-card {
19 text-align: center;
20 background: var(--paper);
21 border: 1px solid var(--rule);
22 border-radius: 16px;
23 padding: 2.5rem 1.75rem;
24}
25.vb-ico {
26 width: 64px; height: 64px; margin: 0 auto 1rem;
27 display: flex; align-items: center; justify-content: center;
28 font-size: 1.8rem; border-radius: 50%;
29 background: color-mix(in srgb, var(--accent) 14%, var(--paper-2));
30}
31.vb-title { font-family: var(--font-display, serif); font-size: 1.6rem; margin: 0 0 0.5rem; }
32.vb-text { color: var(--ink-muted, var(--ink-soft)); font-size: 0.95rem; line-height: 1.55; margin: 0 auto 1.5rem; max-width: 42ch; }
33.vb-actions { display: flex; gap: 0.6rem; justify-content: center; flex-wrap: wrap; }
34.vb-btn {
35 display: inline-flex; align-items: center; justify-content: center;
36 padding: 0.6rem 1.1rem; min-height: 42px;
37 border: 1px solid var(--rule); border-radius: 8px;
38 background: var(--paper-2); color: var(--ink);
39 font-family: var(--font-ui, system-ui), sans-serif; font-size: 0.9rem; font-weight: 600;
40 text-decoration: none; cursor: pointer; transition: border-color 120ms, opacity 120ms;
41}
42.vb-btn:hover { border-color: var(--accent); }
43.vb-btn-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
44.vb-btn-primary:hover { opacity: 0.92; }
45</style>
Note: See TracBrowser for help on using the repository browser.