2019-07-05 09:02:24 +00:00
|
|
|
/*
|
|
|
|
* ### Start sticky footer ###
|
|
|
|
* Force the footer to always stay on the bottom of the page regardless of how
|
|
|
|
* little content is on the page.
|
|
|
|
*/
|
2019-07-04 12:59:23 +00:00
|
|
|
body {
|
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
main {
|
|
|
|
flex: 1 0 auto;
|
|
|
|
}
|
2019-07-05 09:02:24 +00:00
|
|
|
/* ### End sticky footer ### */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ### Start sidenav-fixed offset ###
|
|
|
|
* The sidenav-fixed class is used which causes the sidenav to be fixed and open
|
|
|
|
* on large screens and hides to the regular functionality on smaller screens.
|
|
|
|
* In order to prevent the sidenav to overlap the content, the content (in our
|
|
|
|
* case header, main and footer) gets an offset equal to the width of the
|
|
|
|
* sidenav.
|
|
|
|
*/
|
2019-08-01 12:01:06 +00:00
|
|
|
@media only screen and (min-width : 993px) {
|
2019-07-05 09:02:24 +00:00
|
|
|
header, main, footer {
|
2019-08-01 12:01:06 +00:00
|
|
|
padding-left: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navbar-fixed > nav {
|
|
|
|
width: calc(100% - 300px)
|
2019-07-05 09:02:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
/* ### End sidenav-fixed offset ### */
|
2019-09-09 13:02:17 +00:00
|
|
|
|
|
|
|
/* CSS for clickable th elements in tables. Needed for sortable table data with
|
|
|
|
list js. On click on th header elements will be sorted accordingly. Also a caret
|
|
|
|
indicator will show up how the column is sorted right now.; */
|
|
|
|
.sort {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.sort:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid transparent;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:-10px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
|
|
|
.sort.asc:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-top: 5px solid #000000;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:13px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
|
|
|
.sort.desc:after {
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
border-left: 5px solid transparent;
|
|
|
|
border-right: 5px solid transparent;
|
|
|
|
border-bottom: 5px solid #000000;
|
|
|
|
content:"";
|
|
|
|
position: relative;
|
|
|
|
top:-10px;
|
|
|
|
right:-5px;
|
|
|
|
}
|
2019-10-24 11:14:15 +00:00
|
|
|
|
|
|
|
/* Sticy side elements */
|
|
|
|
.sticky {
|
|
|
|
position: -webkit-sticky;
|
|
|
|
position: sticky;
|
|
|
|
top: 80px;
|
|
|
|
padding: 50px;
|
|
|
|
}
|