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

70 lines
1.1 KiB
SCSS
Raw Permalink 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;
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;
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
}
2017-12-11 18:52:45 +00:00
2016-08-28 22:13:02 +00:00
}
2016-08-26 21:21:58 +00:00
}
2016-08-02 17:54:18 +00:00
}
2017-12-11 18:52:45 +00:00
#cammie-section {
button{
background-color: $orange;
color: white;
margin-top: 5px;
border-radius: 0;
border: none;
2018-04-14 21:33:56 +00:00
width: 100%;
&:hover{
color: #363636;
}
&:active{
background-color: #b36b00; //dark orange
color: #363636;
}
2017-12-11 18:52:45 +00:00
}
2017-12-11 19:03:13 +00:00
2017-12-11 18:52:45 +00:00
}