watch.twip-network.org/styles/pages/user/style.css

39 lines
573 B
CSS
Raw Normal View History

2024-01-25 15:51:50 +01:00
body {
2024-01-25 15:54:12 +01:00
height: 200vh !important;
2024-01-25 15:51:50 +01:00
}
2024-01-25 12:58:01 +01:00
.user-index-header-text {
width: 80%;
margin: auto;
text-align: left;
padding: 0;
}
.user-index-h1 {
font-size: 4rem;
text-align: left;
}
.user-index-h2 {
font-size: 3.3rem;
text-align: left;
}
.outlined-text {
-webkit-text-fill-color: transparent;
-webkit-text-stroke: 2.2px #8c00ff;
2024-01-25 15:50:51 +01:00
}
.user-index-h1,
.user-index-h2 {
2024-01-25 16:01:20 +01:00
opacity: 0;
2024-01-25 16:02:10 +01:00
transform: translateX(-35px);
transition: opacity 0.8s ease, transform 0.6s ease;
2024-01-25 15:50:51 +01:00
}
2024-01-25 16:01:20 +01:00
.fade-in {
2024-01-25 15:50:51 +01:00
opacity: 1;
2024-01-25 16:01:20 +01:00
transform: translateX(0);
2024-01-25 15:50:51 +01:00
}