47 lines
729 B
CSS
47 lines
729 B
CSS
body {
|
|
padding-top: 58px;
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.breadcrumbddd {
|
|
position: fixed;
|
|
top: 56px;
|
|
display: inline-block;
|
|
z-index: 1030;
|
|
}
|
|
|
|
.large-glyph {
|
|
font-size : 24px;
|
|
color:lightgray;
|
|
}
|
|
|
|
/*overview stuff*/
|
|
.overviewtierrow {
|
|
border-bottom:gray 1px solid;
|
|
}
|
|
.tierrow {
|
|
margin-bottom:10px;
|
|
}
|
|
|
|
|
|
/*Animations*/
|
|
|
|
/* The starting CSS styles for the enter animation */
|
|
.fade.ng-enter {
|
|
transition:0.5s linear all;
|
|
opacity:0;
|
|
}
|
|
|
|
/* The finishing CSS styles for the enter animation */
|
|
.fade.ng-enter.ng-enter-active {
|
|
opacity:1;
|
|
}
|
|
|
|
/* now the element will fade out before it is removed from the DOM */
|
|
.fade.ng-leave {
|
|
transition:0.5s linear all;
|
|
opacity:1;
|
|
}
|
|
.fade.ng-leave.ng-leave-active {
|
|
opacity:0;
|
|
} |