0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-16 12:32:39 +00:00

initial draft

This commit is contained in:
Victor Losada Hernandez
2023-03-02 18:01:44 +01:00
parent cc89ad1c7d
commit 690e797fe5
5 changed files with 107 additions and 0 deletions

View File

@@ -783,6 +783,64 @@ h5 + table{
font-family : Overpass;
}
}
//*****************************
// * INSIDE COVER PAGE
// *****************************/
.page:has(.insideCover) {
h1 {
font-family: NodestoCapsCondensed;
font-weight: normal;
font-size: 2.1cm;
text-align: center;
text-transform: uppercase;
line-height: 2cm;
position: absolute;
top: 3.2cm;
left: 50%;
translate: -50% 0;
width: max-content;
}
hr {
visibility: visible;
height: 0.3cm;
width: 12cm;
position: absolute;
left: 50%;
top: 6cm;
translate: -50% 0;
background-image: @horizontalRule;
background-size: 100%;
border: none;
}
img {
position: absolute;
left: 60%;
top: 20%;
translate: -50% 0;
min-width: 100%;
mask-image: @insideCoverMask;
mask-repeat: no-repeat;
-webkit-mask-image: @insideCoverMask;
-webkit-mask-repeat: no-repeat;
}
.logo {
position: absolute;
bottom: 1cm;
left: 50%;
translate: -50% 0;
width: 2cm;
height: 2cm;
background-image: @naturalCritLogo;
}
&::after {
all: unset;
}
}
//*****************************