diff options
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index e4e3ebd..cef4a10 100644 --- a/static/style.css +++ b/static/style.css @@ -433,6 +433,51 @@ iframe { list-style-type: initial; } +#poems { + margin: 16vw 0; + display: flex; + flex-wrap: wrap; + align-items: center; + justify-content: space-around; + gap: 32vw; +} + +#poems .poem { + margin: 0; + position: relative; +} + +#poem { + display: flex; + align-items: center; + margin: 2vw; +} + +.poem { + margin: auto; + max-width: 50em; +} + +.poem .title { + font-family: 'Louise'; + font-size: 4em; + margin: 0.5em 0 0; +} + +.poem .created-at { + font-family: 'Steps Mono'; + font-size: 1em; + margin: 0 0 1em; +} + +.poem .created-at a { + padding: 0; + margin: 0; + background-color: transparent; + color: #b52f6a; + text-decoration: underline; +} + /* filter-tags */ #filter-tags { font-family: 'Go Mono'; |