diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-19 14:21:33 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-19 14:21:33 +0100 |
| commit | 5d9f7190bd118fe4d44594d7a9584de98b527467 (patch) | |
| tree | c323938b4626290a227a652380af769d7f4c4518 /static | |
| parent | 29f687276d9e9ef01ce70ebd210a01386ca581ae (diff) | |
Port to svelte
Diffstat (limited to 'static')
| -rw-r--r-- | static/global.css | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/static/global.css b/static/global.css new file mode 100644 index 0000000..284b16c --- /dev/null +++ b/static/global.css @@ -0,0 +1,50 @@ +body { + background: linear-gradient(270deg, #fff 0%, #ccc 100%); + font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; + padding: 2em; +} + +h1 { + background: linear-gradient(104deg, rgba(229,19,34,1) 95%, rgba(229,19,34,0) 95%); + color: #fff; + padding: 0.5em 1em; + text-transform: uppercase; +} + +ul { + list-style: none; +} + +li { + margin: 1em; +} + +li h2 { + font-size: 1.4em; + margin: 0; + background: linear-gradient(104deg, rgba(229,19,34,1) 95%, rgba(229,19,34,0) 95%); + color: #fff; + padding: 0.2em 1em 0.2em 0.5em; + width: max-content; +} + +li p { + margin: 0; +} + +li span { + display: inline-block; +} + +li .emoji { + position: absolute; + font-size: 4em; + margin-left: -1.1em; +} + +li .text { + font-size: 2em; + padding: 0.5em 1em; + margin-left: 0.5em; + background: #fff; +} |