Depuración de tamplete
This commit is contained in:
@ -0,0 +1,38 @@
|
||||
/*
|
||||
Name: Examples - Text Background Clip Animation
|
||||
Written by: Okler Themes - (http://www.okler.net)
|
||||
Theme Version: 12.1.0
|
||||
*/
|
||||
.text-bg-clip-animation {
|
||||
font-size: 150px;
|
||||
line-height: 200px;
|
||||
font-weight: bolder;
|
||||
color: #000;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
background-size: 40%;
|
||||
background-position: 50% 50%;
|
||||
background-clip: text;
|
||||
-webkit-background-clip: text;
|
||||
color: rgba(0, 0, 0, 0.08);
|
||||
}
|
||||
|
||||
@media (max-width: 1200px) {
|
||||
.text-bg-clip-animation {
|
||||
font-size: 75px;
|
||||
line-height: 100px;
|
||||
}
|
||||
}
|
||||
|
||||
.text-bg-clip-animation.appear-animation-visible {
|
||||
animation: textBgZoom 10s ease 500ms forwards;
|
||||
}
|
||||
|
||||
@keyframes textBgZoom {
|
||||
from {
|
||||
background-size: 40%;
|
||||
}
|
||||
to {
|
||||
background-size: 10%;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user