mami/src/mami.css/youare.css
2024-02-11 01:42:39 +00:00

45 lines
823 B
CSS

@keyframes youareanim {
0% {
color: #000;
background-color: #fff;
}
100% {
color: #fff;
background-color: #000;
}
}
.youare {
font-size: 16px;
font-family: 'Times New Roman', serif;
animation: .95s steps(2, jump-none) youareanim infinite;
}
.youare-content {
width: 100%;
height: 100%;
border: 1vh solid;
border-radius: env(safe-area-inset-top); /* this works well enough on my iphone, fuck it lol */
display: flex;
flex-direction: column;
justify-content: center;
}
.youare-text {
display: flex;
align-items: baseline;
justify-content: center;
line-height: 15vw;
}
.youare-big {
font-size: 10vw;
}
.youare-smiles {
display: flex;
font-size: 20vw;
line-height: 15vw;
justify-content: center;
}