UNPKG
template-ivan
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
scaffold template
github.com/IvanPeng2015/frontendtraining
IvanPeng2015/frontendtraining
template-ivan
/
react
/
src
/
components
/
welcome.css
17 lines
(14 loc)
•
226 B
CSS
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.welcome
{
animation
: welcome-spin infinite
5s
linear;
width
:
80px
;
height
:
80px
;
text-align
: center; }
@keyframes
welcome-spin {
from
{
transform
:
rotate
(
0deg
); }
to
{
transform
:
rotate
(
360deg
); } }