12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- /**
- * Layouts
- *
- */
- @import "elements";
- #content, #center .page-title, #perfnode, #filters, #timeline, #timeline-container{
- .transition(height, 1s, ease-out);
- /*-webkit-transition: height, 5s, ease-out;
- -moz-transition: height, 5s, ease-out;
- -o-transition: height, 5s, ease-out;
- transition: height, 5s, ease-out;
- */
- }
- body.layout-intro{
- #main{ height:97%; }
-
- #perfnode{ height:0%!important; }
-
- #filters{ height:0%; }
-
- #timeline{ height:65%;
- #timeline-container{ height:0%; }
- }
-
- #timeline-loader{ display:block; margin:0 auto 5px;}
- }
- body.layout-timeline{
- #main{
- height:97%;
- #content, #center .page-title{height:0%;}
- }
-
- #perfnode{ height:0%!important; }
-
- #filters{ height:30%; }
-
- #timeline{ height:65%;
- #timeline-container{ height:98%; }
- }
-
- #timeline-loader{ display:none; }
- }
- body.layout-perfnode{
- #main{
- height:97%;
- #content, #center .page-title{height:0%;}
- }
-
- #perfnode{ height:85%!important; }
-
- #filters{ height:0%; }
-
- #timeline{ height:3%;
- #timeline-container{ height:0%; }
- }
-
- #timeline-loader{ display:none; }
- }
|