-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a89f7be
commit 107c2ef
Showing
6 changed files
with
55 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,7 @@ | ||
<p>about works!</p> | ||
<h1 class="animated fadeIn fast">Sobre Comic App</h1> | ||
<hr> | ||
<p class="animated fadeIn"> | ||
|
||
Lorem ipsum, dolor sit amet consectetur adipisicing elit. Iste odio nulla quaerat accusamus soluta numquam exercitationem placeat earum at quia sapiente, pariatur, accusantium molestias delectus voluptatem! Voluptates ducimus consectetur sapiente! | ||
Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptatum quae nihil dolores, incidunt omnis aperiam. Ullam eveniet dolorem architecto consequatur, impedit odit dolor est incidunt reiciendis accusantium dolorum, ad adipisci. | ||
</p> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,35 @@ | ||
/* You can add global styles to this file, and also import other style files */ | ||
.main-container{ | ||
margin-top: 20px; | ||
} | ||
|
||
|
||
|
||
|
||
/* ANIMACIONES */ | ||
.animated { | ||
-webkit-animation-duration: 1s; | ||
animation-duration: 1s; | ||
-webkit-animation-fill-mode: both; | ||
animation-fill-mode: both; | ||
} | ||
|
||
.fast { | ||
-webkit-animation-duration: 0.4s; | ||
animation-duration: 0.4s; | ||
-webkit-animation-fill-mode: both; | ||
animation-fill-mode: both; | ||
} | ||
|
||
@keyframes fadeIn { | ||
from { | ||
opacity: 0; | ||
} | ||
|
||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
.fadeIn { | ||
animation-name: fadeIn; | ||
} |