mirror of
https://github.com/TomHodson/tomhodson.github.com.git
synced 2025-06-26 10:01:18 +02:00
21 lines
336 B
SCSS
21 lines
336 B
SCSS
/* ==========================================================================
|
|
ANIMATIONS
|
|
========================================================================== */
|
|
|
|
@-webkit-keyframes intro {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
@keyframes intro {
|
|
0% {
|
|
opacity: 0;
|
|
}
|
|
100% {
|
|
opacity: 1;
|
|
}
|
|
} |