diff --git a/core/home/static/css/welcome_page.css b/core/home/static/css/welcome_page.css index bad2933..320789a 100644 --- a/core/home/static/css/welcome_page.css +++ b/core/home/static/css/welcome_page.css @@ -81,19 +81,22 @@ svg:not(:root) { max-width: 265px; } -@keyframes pos { +@keyframes float { 0%, 100% { - transform: rotate(-6deg); + transform: translateY(0px); } 50% { - transform: rotate(6deg); + transform: translateY(-12px); } } -.egg { +.book-page, +.book-spine { fill: #43b1b0; - animation: pos 3s ease infinite; - transform: translateY(50px); +} + +.open-book { + animation: float 3s ease-in-out infinite; transform-origin: 50% 80%; } diff --git a/core/home/static/img/logo-scielo-signature.png b/core/home/static/img/logo-scielo-signature.png new file mode 100644 index 0000000..5f5e840 Binary files /dev/null and b/core/home/static/img/logo-scielo-signature.png differ diff --git a/core/home/templates/home/welcome_page.html b/core/home/templates/home/welcome_page.html index dcacaf3..7f50cc2 100644 --- a/core/home/templates/home/welcome_page.html +++ b/core/home/templates/home/welcome_page.html @@ -1,9 +1,9 @@ -{% load i18n wagtailcore_tags %} +{% load i18n wagtailcore_tags static %}