Website/styles/Article.module.css

33 lines
750 B
CSS

@keyframes pop {
from {
scale: .75;
opacity:0;
}
to {
scale: 1;
opacity:1;
}
}
.Article {
scale: .75;
opacity:0;
background-color: rgb(27, 26, 36);
font-family: 'Manrope';
font-size: 12pt;
padding: 30px;
border: 0px white solid;
border-radius: 10px;
margin: 20px;
margin-top:70px;
margin-bottom:70px;
position: relative;
animation-name:pop;
animation-duration:0.5s;
animation-timing-function:ease-in-out;
animation-delay:0s;
animation-iteration-count:1;
animation-direction:normal;
animation-fill-mode:forwards;
-webkit-box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.25);
box-shadow: 0px 0px 10px 10px rgba(0,0,0,0.25);
}