You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

171 lines
2.7 KiB

body {
background-image: radial-gradient(cornflowerblue, ghostwhite);
height: 100%;
padding: 12px;
}
h2 {
padding: 12px;
}
p.lead {
padding-right: 12px;
}
div.forms {
max-width: 50%;
float: left;
display: flex;
}
ul {
padding: 0;
}
ul li {
list-style: none;
}
label {
padding-right: 6px;
}
#title,
#authors,
#comments,
#timestamp,
#tags {
display: flex;
}
input#metadata {
background-color: rgba(100, 149, 237, 0.4);
}
input#generate {
float: right;
}
.metafields {
background-color: ghostwhite;
padding: 1rem;
margin-right: 1rem;
border: 1px solid black;
border-radius: 1em;
}
.fields {
padding-top: 2em;
}
span.field-heading {
border-radius: 1em;
color: black;
border: 1px solid black;
padding-left: 6px;
}
div.iframe {
width: 50%;
height: 600px;
display: inline-block;
border: 1px solid black;
}
object {
width: 100%;
height: 100%;
}
iframe {
position: relative;
height: 100%;
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;
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 {
background-color: transparent;
margin: auto;
margin-top: 1rem;
margin-bottom: 2rem;
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;
border: 1px solid black;
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);
}