cs-2022-class-profile/pages/frontpage.module.css

56 lines
892 B
CSS

.main {
display: flex;
flex-direction: column;
align-items: center;
}
.title {
position: relative;
width: 80vw;
height: 100vh;
border: 1px solid orange;
}
.titleImage {
position: absolute;
top: 80px;
left: 150px;
}
.bubble {
position: absolute;
bottom: 10px;
right: 100px;
width: 750px;
height: 350px;
background-color: var(--pink);
opacity: 80%;
border-radius: 50px;
}
.decoratorSolid {
position: absolute;
top: 20px;
right: 250px;
width: 250px;
height: 180px;
background-color: var(--primary-accent-light);
opacity: 50%;
border-radius: 50px;
}
.decoratorDots {
position: absolute;
top: 300px;
right: 10px;
width: 175px;
height: 275px;
background-image: radial-gradient(var(--link) 35%, transparent 35%);
background-position: 0 0;
background-size: 25px 25px;
}
.main > * {
margin-top: 65px;
margin-bottom: 65px;
}