create-kf-component
Version:
create-kf-component is a cli tool that scaffolds Javascript based custom component projects that seamlessly integrate into Kissflow.
62 lines (53 loc) • 938 B
CSS
.landingHero{
width: max-content;
height: 100%;
position: relative;
}
.mainDiv {
width: 100%;
height: 100%;
padding: 28px;
display: flex;
gap: 8px;
flex-direction: column;
align-items: flex-start;
justify-content: flex-start;
background-color: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(25px);
border-radius: 15px;
position: relative;
}
.sampletext {
font-size: 18px;
font-weight: 500;
line-height: 2em;
}
.logo {
position: absolute;
bottom: 30px;
right: 50px
}
.landingHero::after{
display: block;
content: "";
width: 150px;
aspect-ratio: 1;
border-radius: 50%;
position: absolute;
z-index: -1;
background-color: #1f80ff;
left: -50px;
bottom: -50px;
}
.landingHero::before{
display: block;
content: "";
width: 150px;
aspect-ratio: 1;
border-radius: 50%;
position: absolute;
z-index: -1;
background-color: #cf2c91;
top: -50px;
right: -50px;
}