2016-08-14 10:12:19 +02:00
|
|
|
#cammie-container {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
width: 100%;
|
2016-08-02 19:54:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.fullpage {
|
|
|
|
min-width: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: black;
|
|
|
|
}
|
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
#cammie-section {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
#cammie-body {
|
|
|
|
position: relative;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
.ctrl {
|
|
|
|
background-color: $cammie-controls-color;
|
|
|
|
color: white;
|
|
|
|
z-index: 100;
|
|
|
|
position: absolute;
|
2016-08-02 19:54:18 +02:00
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
// Chevron centering
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $zeus_orange;
|
|
|
|
z-index: 200;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
}
|
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
.left {
|
|
|
|
height: 100%;
|
|
|
|
width: 50px;
|
|
|
|
left: 0;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
.right {
|
|
|
|
height: 100%;
|
|
|
|
width: 100px;
|
|
|
|
right: 0;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
.up {
|
|
|
|
height: 100px;
|
|
|
|
width: 100%;
|
|
|
|
top: 0;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
|
2016-08-26 23:21:58 +02:00
|
|
|
.down {
|
|
|
|
height: 100px;
|
|
|
|
width: 100%;
|
|
|
|
bottom: 0;
|
|
|
|
}
|
2016-08-02 19:54:18 +02:00
|
|
|
}
|