/
alekstar79
/
cards
Обзор
Документация
Войти
/
alekstar79
/
cards
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
styles.css
58 строк
988 B
alekstar79
Initial commit
24 янв 2023, 19:36
24 янв 2023, 19:36
50e5a1e
Код
Авторство
О чём код?
@import url('https://fonts.googleapis.com/css?family=Muli&display=swap'); * { box-sizing: border-box; } body { height: 100vh; margin: 0; display: flex; justify-content: center; align-items: center; font-family: 'Muli', sans-serif; overflow: hidden; background: linear-gradient(0, rgba(5, 610, 255, .4), rgba(135, 60, 255, 0) 80%), linear-gradient(-45deg, rgba(120, 155, 255, .9) 25%, rgba(255, 160, 65, .9) 75%); } .container { width: 100%; display: flex; padding: 0 20px; } .slide { height: 80vh; border-radius: 10px; margin: 10px; cursor: pointer; color: #fff; flex: 1; background-size: cover; background-position: center; background-repeat: no-repeat; position: relative; transition: all 500ms ease-in-out; } .slide h3 { position: absolute; font-size: 24px; bottom: 20px; left: 20px; margin: 0; opacity: 0; } .slide.active { flex: 10; } .slide.active h3 { opacity: 1; transition: opacity 0.3s ease-in 0.4s; }