File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -22,3 +22,38 @@ body {
22
22
line-height : 200px ;
23
23
margin-top : 60px ;
24
24
}
25
+ @keyframes rotating {
26
+ from {
27
+ transform : rotate (0deg );
28
+ -o-transform : rotate (0deg );
29
+ -ms-transform : rotate (0deg );
30
+ -moz-transform : rotate (0deg );
31
+ -webkit-transform : rotate (0deg );
32
+ }
33
+
34
+ to {
35
+ transform : rotate (360deg );
36
+ -o-transform : rotate (360deg );
37
+ -ms-transform : rotate (360deg );
38
+ -moz-transform : rotate (360deg );
39
+ -webkit-transform : rotate (360deg );
40
+ }
41
+ }
42
+ @-webkit-keyframes rotating {
43
+ from {
44
+ transform : rotate (0deg );
45
+ -webkit-transform : rotate (0deg );
46
+ }
47
+ to {
48
+ transform : rotate (360deg );
49
+ -webkit-transform : rotate (360deg );
50
+ }
51
+ }
52
+ .rotating {
53
+ margin-bottom : 2rem ;
54
+ -webkit-animation : rotating 10s linear infinite;
55
+ -moz-animation : rotating 10s linear infinite;
56
+ -ms-animation : rotating 10s linear infinite;
57
+ -o-animation : rotating 10s linear infinite;
58
+ animation : rotating 10s linear infinite;
59
+ }
Original file line number Diff line number Diff line change 10
10
</ head >
11
11
< body >
12
12
< div class ="container ">
13
- < img src ="assets/reactssa.png " alt ="Logo do React Salvador composto por fitas do Senhor do Bomfim ">
13
+ < img src ="assets/react-logo-fitas.png " alt ="Logo do React Salvador composto por fitas do Senhor do Bomfim " class ="rotating ">
14
+ < img src ="assets/react-ssa-text.png " alt ="Logo do React Salvador composto por fitas do Senhor do Bomfim ">
14
15
< a href ="https://github.com/ReactSSA " class ="github-link "> ReactSSA</ a >
15
16
</ div >
16
17
</ body >
You can’t perform that action at this time.
0 commit comments