mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-06-14 22:30:49 +00:00
update
This commit is contained in:
35
node_modules/bs-recipes/recipes/webpack.preact-hot-loader/app/css/main.css
generated
vendored
Normal file
35
node_modules/bs-recipes/recipes/webpack.preact-hot-loader/app/css/main.css
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
.hello-world {
|
||||
margin: 200px 0;
|
||||
font-size: 70px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.hello-world__i {
|
||||
display: inline-block;
|
||||
-webkit-animation: rotate 4000ms infinite linear;
|
||||
animation: rotate 4000ms infinite linear;
|
||||
}
|
||||
|
||||
@keyframes rotate {
|
||||
from {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
to {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
||||
|
||||
@-webkit-keyframes rotate {
|
||||
from {
|
||||
-webkit-transform: rotate(0);
|
||||
transform: rotate(0);
|
||||
}
|
||||
|
||||
to {
|
||||
-webkit-transform: rotate(360deg);
|
||||
transform: rotate(360deg);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user