Services Page Done (?)

This commit is contained in:
2024-06-07 20:10:50 +01:00
parent d4db77cf45
commit cc73a8e3da
41 changed files with 233 additions and 56 deletions
+49 -1
View File
@@ -5,5 +5,53 @@
@tailwind utilities;
.header-text {
@apply text-5xl font-medium sm:text-6xl lg:text-7xl 2xl:text-9xl;
@apply font-medium text-5xl lg:text-7xl xl:text-8xl;
}
.fade-in {
animation: fadeIn ease 1s;
-webkit-animation: fadeIn ease 1s;
-moz-animation: fadeIn ease 1s;
-o-animation: fadeIn ease 1s;
-ms-animation: fadeIn ease 1s;
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-o-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}