mirror of https://github.com/twbs/ratchet.git
Build mobile apps with simple HTML, CSS, and JS components.
http://goratchet.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
499 B
25 lines
499 B
11 years ago
|
//
|
||
|
// Modals
|
||
|
// --------------------------------------------------
|
||
|
|
||
12 years ago
|
.modal {
|
||
12 years ago
|
position: fixed;
|
||
|
top: 0;
|
||
12 years ago
|
opacity: 0;
|
||
|
z-index: 11;
|
||
12 years ago
|
width: 100%;
|
||
12 years ago
|
min-height: 100%;
|
||
12 years ago
|
overflow: hidden;
|
||
12 years ago
|
background-color: #fff;
|
||
11 years ago
|
@include transform(translate3d(0, 100%, 0));
|
||
11 years ago
|
@include transition(-webkit-transform .25s, opacity 1ms .25s);
|
||
12 years ago
|
|
||
11 years ago
|
// Active modal
|
||
|
&.active {
|
||
|
opacity: 1;
|
||
|
height: 100%;
|
||
11 years ago
|
@include transform(translate3d(0, 0, 0));
|
||
11 years ago
|
@include transition(-webkit-transform .25s);
|
||
11 years ago
|
}
|
||
11 years ago
|
}
|