| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- /**
- * Stylesheet
- *
- * @namespace Lungo
- * @class Layout
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- /* DIMENSIONS */
- /* COLORS */
- section {
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: -1;
- display: none;
- visibility: hidden;
- -webkit-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -moz-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -ms-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -o-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -webkit-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -moz-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -ms-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -o-transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- transition: all 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
- -webkit-backface-visibility: hidden;
- }
- section:first-child,
- section.show {
- z-index: 1;
- display: block;
- visibility: visible;
- }
- section.hide {
- z-index: -1;
- display: none;
- visibility: hidden;
- }
- section[data-transition] {
- display: block !important;
- }
- section[data-transition="pop"] {
- opacity: 0;
- -webkit-transform: scale(1.15);
- -moz-transform: scale(1.15);
- -ms-transform: scale(1.15);
- -o-transform: scale(1.15);
- transform: scale(1.15);
- -webkit-transform: scale(1.15);
- -moz-transform: scale(1.15);
- -ms-transform: scale(1.15);
- -o-transform: scale(1.15);
- transform: scale(1.15);
- }
- section[data-transition="pop"]:first-child,
- section[data-transition="pop"].show {
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -ms-transform: scale(1);
- -o-transform: scale(1);
- transform: scale(1);
- -webkit-transform: scale(1);
- -moz-transform: scale(1);
- -ms-transform: scale(1);
- -o-transform: scale(1);
- transform: scale(1);
- opacity: 1;
- }
- section[data-transition="pop"].hide {
- -webkit-transform: scale(0.9);
- -moz-transform: scale(0.9);
- -ms-transform: scale(0.9);
- -o-transform: scale(0.9);
- transform: scale(0.9);
- -webkit-transform: scale(0.9);
- -moz-transform: scale(0.9);
- -ms-transform: scale(0.9);
- -o-transform: scale(0.9);
- transform: scale(0.9);
- opacity: 0;
- }
- section[data-transition="slide"] {
- -webkit-transform: translate(100%, 0);
- -moz-transform: translate(100%, 0);
- -ms-transform: translate(100%, 0);
- -o-transform: translate(100%, 0);
- transform: translate(100%, 0);
- -webkit-transform: translate(100%, 0);
- -moz-transform: translate(100%, 0);
- -ms-transform: translate(100%, 0);
- -o-transform: translate(100%, 0);
- transform: translate(100%, 0);
- visibility: visible !important;
- }
- section[data-transition="slide"]:first-child,
- section[data-transition="slide"].show {
- -webkit-transform: translate(0%, 0);
- -moz-transform: translate(0%, 0);
- -ms-transform: translate(0%, 0);
- -o-transform: translate(0%, 0);
- transform: translate(0%, 0);
- -webkit-transform: translate(0%, 0);
- -moz-transform: translate(0%, 0);
- -ms-transform: translate(0%, 0);
- -o-transform: translate(0%, 0);
- transform: translate(0%, 0);
- }
- section[data-transition="slide"].hide {
- -webkit-transform: translate(-100%, 0);
- -moz-transform: translate(-100%, 0);
- -ms-transform: translate(-100%, 0);
- -o-transform: translate(-100%, 0);
- transform: translate(-100%, 0);
- -webkit-transform: translate(-100%, 0);
- -moz-transform: translate(-100%, 0);
- -ms-transform: translate(-100%, 0);
- -o-transform: translate(-100%, 0);
- transform: translate(-100%, 0);
- }
- header,
- footer {
- position: absolute;
- left: 0;
- width: 100%;
- display: block;
- z-index: 1;
- overflow: hidden;
- }
- header {
- top: 0;
- height: 44px;
- line-height: 44px;
- }
- header .title {
- margin-left: 4px;
- float: left;
- z-index: -1;
- font-size: 1.2em;
- font-weight: bold;
- }
- header .title.with-subtitle {
- line-height: 34px;
- }
- header .title.with-subtitle .subtitle {
- position: relative;
- top: -4px;
- display: block;
- font-size: 0.7em;
- line-height: 0.7em;
- }
- header .title img {
- height: 24px;
- }
- header .title.centered {
- position: absolute;
- left: 0px;
- right: 0px;
- text-align: center;
- display: inline-block;
- }
- footer {
- bottom: 0;
- height: 44px;
- }
|