From 45b7e6e37831b5bd04a5430b484b1f7d1db386cc Mon Sep 17 00:00:00 2001 From: km0 Date: Thu, 2 Mar 2023 12:26:45 +0100 Subject: [PATCH] placeholders --- static/style.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/static/style.css b/static/style.css index ceaa180..98ef82f 100644 --- a/static/style.css +++ b/static/style.css @@ -69,3 +69,25 @@ white-space: pre-wrap; .language-todo:before { content: 'TO DO' } + +.language-placeholder { + position: relative; + margin: 48px auto; + display: flex; + flex-direction: column; + border: 1px dashed currentColor; + justify-content: center; + align-items: center; + padding: 32px 32px; + border-radius: 50%; + font-family: sans-serif; + text-align: center; +} + +.language-placeholder:before { + content: "placeholder"; + text-transform: uppercase; + font-size: 0.8rem; + + color: #aaa; +}