From 9b82db238f9e2e02a76f95c793f8d6ef2387ecfd Mon Sep 17 00:00:00 2001 From: unwox Date: Thu, 26 Sep 2024 17:46:38 +0600 Subject: init --- static/ipuer.jpg | Bin 0 -> 26929 bytes static/logo-hor.png | Bin 0 -> 3311 bytes static/logo.svg | 56 +++++++++++++++++++++++++++ static/style.css | 108 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 164 insertions(+) create mode 100644 static/ipuer.jpg create mode 100644 static/logo-hor.png create mode 100644 static/logo.svg create mode 100644 static/style.css (limited to 'static') diff --git a/static/ipuer.jpg b/static/ipuer.jpg new file mode 100644 index 0000000..13d2c78 Binary files /dev/null and b/static/ipuer.jpg differ diff --git a/static/logo-hor.png b/static/logo-hor.png new file mode 100644 index 0000000..62e5a97 Binary files /dev/null and b/static/logo-hor.png differ diff --git a/static/logo.svg b/static/logo.svg new file mode 100644 index 0000000..75e7095 --- /dev/null +++ b/static/logo.svg @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + diff --git a/static/style.css b/static/style.css new file mode 100644 index 0000000..9b47676 --- /dev/null +++ b/static/style.css @@ -0,0 +1,108 @@ +body { + background: #ffffff; + margin: 3rem; + font-family: Georgia, 'Times New Roman', serif; + color: #352a2e; +} + +.container { + max-width: 76rem; + margin: 0 auto; +} + +.content { + display: flex; + gap: 2rem; +} + +.aside { + width: 10rem; +} + +.aside-content { + position: sticky; + top: 1rem; +} + +.list { + display: flex; + flex-wrap: wrap; + gap: 2rem; + margin-bottom: 1rem; +} + +.tile { + display: block; + width: 12.5rem; +} + +.tile h2 { + font-size: 1rem; + margin-bottom: 0.5rem; + margin-top: 0; +} + +.tile img { + width: 100%; + height: 12.5rem; + object-fit: cover; + object-position: center; +} + +.tile .price { + font-weight: 500; + margin-bottom: 0.25rem; +} + +.paginator-numbers { + width: 100%; +} + +.paginator-numbers a { + text-decoration: none; +} + +.paginator { + display: flex; + gap: 0.5rem; + flex-wrap: wrap; +} + +.paginator a { + color: blue; +} + +.paginator-active { + font-weight: bold; + text-decoration: none; + pointer-events: none; +} + +.logo { + margin-bottom: 2rem; + width: 10rem; +} + +.form input { + margin-bottom: 0.5rem; + width: 100%; +} + +.form button { + width: 100%; +} + +.site-icon { + display: flex; + gap: 0.5rem; + align-items: center; + margin: 0.5rem 0 0.25rem; + text-decoration: none; + font-size: 0.75rem; +} + +.site-icon img { + width: 32px; + object-fit: contain; + height: auto; +} -- cgit v1.2.3