Files
ByteDiceWeb/toys/license/license.css
T

75 lines
1.4 KiB
CSS

#licenseContainer {
position: relative;
width: 600px;
/* height: 400px; */
aspect-ratio: 3 / 2;
height: auto;
padding: 0px 20px 40px 40px;
margin: calc(5px * var(--pxDensity)) auto calc(25px * var(--pxDensity)) auto;
font-size: 0.75rem;
box-sizing: border-box;
display: grid;
grid-template-columns: repeat(2, auto);
grid-template-rows: repeat(2, auto);
}
#picValue {
width: 150px;
height: 150px;
display: block;
}
#credits {
position: absolute;
bottom: 0%;
left: 0%;
margin: 0% 0% 0% 20px;
color: var(--navBarBtn_Inner);
font-size: 0.6rem;
}
#signatureContainer {
display: inline-flex;
flex-direction: column;
margin: 5% 0% 0% 0%;
}
#signatureValue {
margin: 0% 0% 0.2rem 0%;
text-align: center;
font-size: 1rem;
}
#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: 1.5rem;
margin: 0% auto 0% auto;
height: max-content;
}