Add index page, favicon, robots.txt and sitemap.xml
This commit is contained in:
parent
820907c3c2
commit
cb904127c0
26 changed files with 4163 additions and 2638 deletions
34
assets/styles/_animations.scss
Normal file
34
assets/styles/_animations.scss
Normal file
|
@ -0,0 +1,34 @@
|
|||
/* ===========================================================================
|
||||
ANIMATIONS
|
||||
=========================================================================== */
|
||||
|
||||
@keyframes expand-width {
|
||||
0% {
|
||||
width: 0;
|
||||
}
|
||||
100% {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-in-from-bottom {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(0.25rem);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-in-from-top {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(-0.25rem);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue