Mercurial > code > home > repos > front-door-display
annotate src/shared.ts @ 21:a90cb6927c7d default tip
fix countdown queries. Display "now" instead of "In -0.4 hours"
author | drewp@bigasterisk.com |
---|---|
date | Sat, 07 Sep 2024 17:47:36 -0700 |
parents | 472003015880 |
children |
rev | line source |
---|---|
0 | 1 import { css } from "lit"; |
2 | |
3 export const shared = css` | |
17 | 4 :host { |
5 display: inline-block; | |
6 } | |
0 | 7 |
8 h1 { | |
17 | 9 margin: -4px 0 -16px 0; |
0 | 10 font-family: "Acme", sans-serif !important; |
17 | 11 font-size:30px; |
12 color: #00fbff; | |
13 text-shadow: 1px 3px 1px #726262; | |
0 | 14 } |
17 | 15 ol { |
16 list-style: none; | |
17 font-size: 16px; | |
18 padding-inline-start: 5px; | |
0 | 19 } |
17 | 20 span.d { |
21 opacity: 0.5; | |
0 | 22 } |
17 | 23 |
13 | 24 span.t { |
25 color: #50fa7b; | |
26 } | |
0 | 27 `; |