/
terya1
/
12331
Обзор
Документация
Войти
/
terya1
/
12331
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/App.css
64 строки
1 KB
IHARNAZAROV
feat: add project
16 июл 2022, 14:25
16 июл 2022, 14:25
31653a6
Код
Авторство
О чём код?
body { overflow-x: hidden; } .App { text-align: center; } .App-logo { height: 40vmin; } .App-header { background-color: #282c34; min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: calc(10px + 2vmin); color: white; } .App-link { color: #09d3ac; } .heading { color: black; } .subTitle { color: #868e96; } /* Animations */ @keyframes fade_down { 0% { opacity: 0.01; transform: translateY(-20px); transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1); } 100% { opacity: 1; transform: translateY(0px); transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1); } } @keyframes fade_up { 0% { opacity: 0.01; transform: translateY(20px); transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1); } 100% { opacity: 1; transform: translateY(0px); transition: opacity 300ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 300ms cubic-bezier(0.645, 0.045, 0.355, 1); } }