zeus.ugent.be/content/assets/stylesheets/includes/cammie.scss

53 lines
828 B
SCSS
Raw Normal View History

2016-08-30 19:45:27 +00:00
#cammie-body {
2016-08-14 08:12:19 +00:00
position: relative;
2016-08-30 19:45:27 +00:00
#cammie-ctrls {
display: flex;
justify-content: space-between;
flex-direction: column;
height: 100%;
width: 100%;
2016-08-02 17:54:18 +00:00
2016-08-30 19:45:27 +00:00
transition: opacity 1s ease-in-out;
z-index: 5;
opacity: 0;
2016-08-29 13:37:50 +00:00
2016-08-30 19:45:27 +00:00
position: absolute;
top: 0;
left: 0;
2016-08-29 13:37:50 +00:00
2016-08-30 19:45:27 +00:00
.columns {
margin: 0;
}
2016-08-28 22:13:02 +00:00
2016-08-30 19:45:27 +00:00
.center {
flex: 1;
}
2016-08-26 21:21:58 +00:00
2016-08-30 19:45:27 +00:00
&.display {
transition: opacity .5s ease-in-out;
opacity: 1;
}
2016-08-29 13:49:27 +00:00
2016-08-30 19:45:27 +00:00
.ctrl {
height: 100%;
2016-08-29 13:49:27 +00:00
2016-08-30 19:45:27 +00:00
// Center arrows
display: flex;
justify-content: space-around;
align-items: center;
background-color: $cammie-controls-color;
color: white;
&:hover {
2016-11-15 12:39:30 +00:00
background-color: $zeus-orange;
2016-08-30 19:45:27 +00:00
cursor: pointer;
2016-08-28 22:13:02 +00:00
}
2016-08-02 17:54:18 +00:00
2016-08-30 19:45:27 +00:00
&.diag i {
transform: rotate(45deg);
2016-08-28 22:13:02 +00:00
}
}
2016-08-26 21:21:58 +00:00
}
2016-08-02 17:54:18 +00:00
}