zeus.ugent.be/content/assets/stylesheets/includes/cammie.scss
Lorin Werthen b3579498dc
scss
2017-04-24 21:11:18 +02:00

51 lines
779 B
SCSS

#cammie-body {
position: relative;
#cammie-ctrls {
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
transition: opacity 1s ease-in-out;
z-index: 5;
opacity: 0;
position: absolute;
top: 0;
.columns {
margin: 0;
}
.center {
flex: 1;
}
&.display {
transition: opacity .5s ease-in-out;
opacity: 1;
}
.ctrl {
height: 100%;
// Center arrows
display: flex;
justify-content: space-around;
align-items: center;
background-color: $cammie-controls-color;
color: white;
&:hover {
background-color: $zeus-orange;
cursor: pointer;
}
&.diag i {
transform: rotate(45deg);
}
}
}
}