init
This commit is contained in:
19
dev/scss/tools/_keyframes.scss
Normal file
19
dev/scss/tools/_keyframes.scss
Normal file
@ -0,0 +1,19 @@
|
||||
@keyframes fade-from-left {
|
||||
0% {
|
||||
transform: translateX(-96px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
45% { opacity: 1; }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
||||
|
||||
@keyframes fade-from-right {
|
||||
0% {
|
||||
transform: translateX(96px);
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
45% { opacity: 1; }
|
||||
100% { transform: translateX(0); }
|
||||
}
|
13
dev/scss/tools/_mixins.scss
Normal file
13
dev/scss/tools/_mixins.scss
Normal file
@ -0,0 +1,13 @@
|
||||
@mixin slim-ul {
|
||||
ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user