68 lines
1.1 KiB
Plaintext
68 lines
1.1 KiB
Plaintext
/**
|
|
* 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; }
|
|
}
|
|
|