Files
ByteDiceWeb/toys/license/license.css
T

91 lines
2.0 KiB
CSS

#licenseContainer {
font-family: "Comic Sans MS", "Comic Sans", cursive;
position: relative;
max-width: min(100vw, 600px);
max-height: 400px /* min(calc(50vh - calc(25px * var(--pxDensity))), 400px) */;
aspect-ratio: 3 / 2;
width: auto;
height: auto;
padding: 0px min(20px, 3.333%) min(40px, 6.667%) min(20px, 3.333%);
margin: calc(5px * var(--pxDensity)) auto 0% /* calc(25px * var(--pxDensity)) */ auto;
font-size: min(max(1.05vmax, 1.5vmin), 0.75rem);
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(2, auto);
grid-template-rows: repeat(2, auto);
}
#picContainer {
width: max(10vmax, 15vmin);
height: max(10vmax, 15vmin);
max-height: 150px;
max-width: 150px;
display: block;
overflow: hidden;
background-color: transparent;
border-radius: 25%;
}
#picValue {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
#credits {
position: absolute;
bottom: 0%;
left: 0%;
margin: 0% 0% 0% 20px;
color: var(--navBarBtn_Inner);
font-size: min(max(1vmax, 1.2vmin), 0.6rem);
}
#signatureContainer {
display: inline-flex;
flex-direction: column;
margin: 5% 0% 0% 0%;
}
#signatureValue {
font-family: "Yellowtail", serif;
font-weight: 400;
font-style: normal;
margin: 0% 0% -0.2rem 0%;/* margin: 0% 0% 0.2rem 0%; */
text-align: center;
font-size: min(max(2.5vmax, 3vmin), 1.5rem);
}
#signHere {
border-top: #000000 solid 6px;
margin: 0%;
padding: 0% 25px;
text-align: center;
}
#detailsContainer {
display: grid;
grid-template-columns: repeat(2, auto);
}
h2 {
margin: 5px;
}
#sillyValue {
height: 100%;
background-color: #FF0000;
}
.sillyGrid {
width: 99%;
aspect-ratio: 10 / 1;
height: auto;
background-image: repeating-linear-gradient(
to right,
#000000 0px,
#000000 3px,
transparent 3px,
transparent 10%
);
border: 3px solid black;
border-radius: 8px;
align-self: center;
}
#titleValue {
grid-area: 1 / 1 / 2 / 3;
font-size: min(max(3vmax, 4vmin), 1.6rem);
margin: 0% auto 0% auto;
height: max-content;
}