From 2da6bb0e81ee1813d83b5b617cba6ee036aaee15 Mon Sep 17 00:00:00 2001 From: simoon Date: Tue, 11 Jan 2022 16:15:39 +0100 Subject: [PATCH] updated styles.css --- static/styles.css | 161 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 137 insertions(+), 24 deletions(-) diff --git a/static/styles.css b/static/styles.css index 08abfdd..cb30841 100644 --- a/static/styles.css +++ b/static/styles.css @@ -1,27 +1,25 @@ -/* * { */ -/* border: 1px solid red; */ -/* } */ + * { + /*border: 1px solid red; */ + } body { - /* height: 1000px;*/ + background-image: radial-gradient(cornflowerblue, ghostwhite); + height: 100%; + padding: 12px; +} + +h2 { + padding: 12px; } -div.container { - max-width: 100%; +p.lead { + padding-right: 12px; } div.forms { - /* padding-top: 24px;*/ max-width: 50%; float: left; - display: inline; -} - -div.iframe { - width: 50%; - height: 480px; - display: inline-block; - border: 2px solid blue; + display: flex; } ul { @@ -32,17 +30,52 @@ ul li { list-style: none; } +label { + padding-right: 6px; +} + #title, -#author, +#authors, #comments, #timestamp, #tags { display: flex; + /*padding: 6px;*/ } -form.metafields { - padding: 12px; - background-color: gainsboro; +input#metadata { + background-color: ghostwhite; +} + +.metafields { + /*background-image: linear-gradient(cornflowerblue, ghostwhite);*/ +} + +.fields { + padding-top: 12px; +} + +span.field-heading { + border-radius: 1em; + border: 1px solid black; + padding-left: 6px; +} + +.container-fluid { + padding-left: 0px; +} + +div.iframe { + width: 50%; + height: 600px; + display: inline-block; + border: 2px solid blue; +} + +object { + border: 3px solid hotpink; + width: 100%; + height: 100%; } iframe { @@ -51,11 +84,91 @@ iframe { width: 100%; } -object { - max-height: 100%; - max-width: 100%; -} - .error { color: red; } + +.navbar.navbar-expand-md.navbar-light { + color: black; + padding-top: 0px; + padding-bottom: 0px; +} + +.bg-light { + --bs-bg-opacity: 1; + background-color: transparent; +} + +nav.navbar a { + text-decoration: none; + color: black; + padding-right: 48px; +} + +hr.line { + margin: 1rem 0; + color: black; + /*background-color: currentColor;*/ + opacity: 1; +} + +.side-img { + width: 300px; +} + +.figure-img, .figure-caption { + text-align: center; +} + +/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */ +.flip-card { + /*display: block;*/ + background-color: transparent; + margin: auto; + margin-top: 1rem; + margin-bottom: 2rem; +/* text-align: center;*/ + filter: drop-shadow(1rem 1rem 10px cornflowerblue); + width: 300px; + height: 200px; + perspective: 1000px; /* Remove this if you don't want the 3D effect */ +} + +/* This container is needed to position the front and back side */ +.flip-card-inner { + position: relative; + width: 100%; + height: 100%; + text-align: center; + transition: transform 0.6s; + transform-style: preserve-3d; +} + +/* Do an horizontal flip when you move the mouse over the flip box container */ +.flip-card:hover .flip-card-inner { + transform: rotateY(180deg); +} + +/* Position the front and back side */ +.flip-card-front, .flip-card-back { + position: absolute; + padding: 12px; + margin: auto; + width: 100%; + height: 100%; + -webkit-backface-visibility: hidden; /* Safari */ + backface-visibility: hidden; +} + +/* Style the front side (fallback if image is missing) */ +.flip-card-front { + background-color: ghostwhite; + color: black; +} + +/* Style the back side */ +.flip-card-back { + background-color: ghostwhite; + color: black; + transform: rotateY(180deg); +} \ No newline at end of file