/
githubmirror
/
reveal.js
Обзор
Документация
Войти
/
githubmirror
/
reveal.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.0.0
css/layout.scss
49 строк
713 B
Hakim El Hattab
auto-animate example in demo
19 май 2020, 11:22
19 май 2020, 11:22
9d11927
Код
Авторство
О чём код?
/** * Layout helpers. */ // Stretch an element vertically based on available space .reveal .stretch, .reveal .r-stretch { max-width: none; max-height: none; } .reveal pre.stretch code, .reveal pre.r-stretch code { height: 100%; max-height: 100%; box-sizing: border-box; } // Stack multiple elements on top of each other .reveal .r-stack { display: grid; } .reveal .r-stack > * { grid-area: 1/1; margin: auto; } // Horizontal and vertical stacks .reveal .r-vstack, .reveal .r-hstack { display: flex; } .reveal .r-vstack { flex-direction: column; } .reveal .r-hstack { flex-direction: row; } .reveal .items-center { align-items: center; } .reveal .justify-center { justify-content: center; }