Skip to content
Snippets Groups Projects
Commit ad66daa6 authored by Simon Lejeune's avatar Simon Lejeune
Browse files

[REF] planner: responsive width

fp's request
parent f97b4458
No related branches found
No related tags found
No related merge requests found
......@@ -204,14 +204,13 @@
}
}
@o_planner_width: 480px;
#PlannerDialog {
font-family: "Lato", serif;
position: absolute;
top: 46px; // enterprise fine-tuning
right: 0px;
bottom: 0px;
width: @o_planner_width;
width: 960px;
z-index: 1001; // z-index website + 1
padding-bottom: 40px;
background-color: white;
......@@ -219,6 +218,10 @@
box-shadow: 0 3px 9px #666666;
outline: none;
@media (max-width: 992px) {
width: 90%;
}
.o-planner-header() {
display: inline-block;
padding: 5px 5px 5px 5px;
......@@ -287,8 +290,8 @@
&.marked:after {
position: absolute;
top: 0;
left: 105px;
font-size: 20em;
left: 360px;
font-size: 300px;
font-family: "FontAwesome";
content: "\f00c";
color: #21b799;
......@@ -312,6 +315,11 @@
-ms-animation-iteration-count: 1;
-ms-transform-origin: 50% 50%;
-ms-animation-fill-mode:forwards; /*IE 10+*/
@media (max-width: 992px) {
left: 40%;
font-size: 30vw;
}
}
//NOTEBOOK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment