From 1b2b7c3eb939724696894f31ff27db97b0cac84c Mon Sep 17 00:00:00 2001 From: Andreas Widen Date: Sat, 25 Nov 2023 17:21:37 +0100 Subject: Initial commit. Signed-off-by: Andreas Widen --- static/base/css/item-preview.css | 67 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 static/base/css/item-preview.css (limited to 'static/base/css/item-preview.css') diff --git a/static/base/css/item-preview.css b/static/base/css/item-preview.css new file mode 100644 index 0000000..ab58090 --- /dev/null +++ b/static/base/css/item-preview.css @@ -0,0 +1,67 @@ +/* Harmonic Flow web site */ +/* Public domain 2017. All rights waived */ + +.item-preview, +.item-preview:link, +.item-preview:visited { + color: #4D4D4D; + display: block; + padding: 10px 15px; + text-align: left; +} + +.item-preview:active, +.item-preview:focus, +.item-preview:hover { + background-color: #F4BB15; +} + +.item-preview h3 { + font-size: 1em; + font-weight: bold; + margin: 0px; +} + +.item-date { + font-size: 0.9em; +} + + + +@media screen and (min-width: 1024px) { + .item-preview, + .item-preview:link, + .item-preview:visited { + background-color: transparent; + border-color: transparent; + border-style: solid; + border-width: thin; + display: inline-block; + margin: 10px 0px 15px 0px; + vertical-align: top; + width: 270px; + } + + .item-preview:active, + .item-preview:focus, + .item-preview:hover { + border-color: #F4BB15; + } + + .summary-box { + color: #4D4D4D; + display: inline-block; + font-size: 0.9em; + margin: 5px; + padding: 10px; + text-align: left; + vertical-align: top; + width: 280px; + } + + .summary-box img { + display: block; + margin: 0px auto; + max-width: 100%; + } +} -- cgit v1.2.3-54-g00ecf