@import url(http://fonts.googleapis.com/css?family=Roboto:400); body { background-color: #fff; -webkit-font-smoothing: antialiased; font: normal 14px Roboto,arial,sans-serif !important; } .container { padding: 25px; position: fixed; } .form-login { background-color: #EDEDED; padding-top: 10px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; border-radius: 15px; border-color: #d2d2d2; border-width: 5px; box-shadow: 0 1px 0 #cfcfcf; } h4 { border: 0 solid #fff; border-bottom-width: 1px; padding-bottom: 10px; text-align: center; } .form-control { border-radius: 10px; } .wrapper { text-align: center; } .panel-warning > .panel-heading { background-image: linear-gradient(to bottom,#eb9114 0,#f1b25b 100%) !important; color: white !important; } .panel-danger > .panel-heading { background-image: linear-gradient(to bottom,#c12e2a 0,#d9534f 100%) !important; color: white !important; } .label-as-badge { border-radius: 1em; } .bar-off { fill: #c2c2d6; } .bar-off:hover { fill: #e0e0eb; } .bar-wait { fill: #f0a742; } .bar-wait:hover { fill: #f4bd71; } .bar-trans { fill: #80d4ff; } .bar-trans:hover { fill: #99ddff; } .bar-calc { fill: #2f6fa6; } .bar-calc:hover { fill: #3884c7; } .bar-paus { fill: #47476b; } .bar-paus:hover { fill: #5c5c8a; } .bar-fin { fill: #5cb85c; } .bar-fin:hover { fill: #71c171; } .bar-abo { fill: #c2302c; } .bar-abo:hover { fill: #d54944; } .bar-fail { fill: #c2302c; } .bar-fail:hover { fill: #d54944; } rect.selection { stroke: gray; stroke-dasharray: 4px; stroke-opacity: 0.5; fill: transparent; } /* disable text selection */ svg *::selection { background: transparent; } svg *::-moz-selection { background: transparent; } svg *::-webkit-selection { background: transparent; } [animate-on-change] { transition: all 1s; -webkit-transition: all 1s; } [animate-on-change].changed { background-color: lightblue; transition: none; -webkit-transition: none; } [animate-on-change].changedshut { background-color: lightsalmon; transition: none; -webkit-transition: none; } .panel-heading .nav-justified.nav-pills li.active>a{ background-color:#74a9d8 !important; } rect{ -webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); -moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75); } /***************************** Required styles *****************************/ /** * For the correct positioning of the placeholder element, the dnd-list and * it's children must have position: relative */ ul[dnd-list], ul[dnd-list] > li { position: relative; } /***************************** Dropzone Styling *****************************/ /** * The dnd-list should always have a min-height, * otherwise you can't drop to it once it's empty */ .dropzone ul[dnd-list] { min-height: 42px; margin: 0px; padding-left: 0px; } /** * The dnd-lists's child elements currently MUST have * position: relative. Otherwise we can not determine * whether the mouse pointer is in the upper or lower * half of the element we are dragging over. In other * browsers we can use event.offsetY for this. */ .dropzone li { background-color: #fff; border: 1px solid rgba(0,0,0,0.3) ; border-radius:25px; display: block; padding: 0px; } /** * Reduce opacity of elements during the drag operation. This allows the user * to see where he is dropping his element, even if the element is huge. The * .dndDragging class is automatically set during the drag operation. */ .dropzone .dndDragging { opacity: 0.7; } /** * The dndDraggingSource class will be applied to the source element of a drag * operation. It makes sense to hide it to give the user the feeling that he's * actually moving it. Note that the source element has also .dndDragging class. */ .dropzone .dndDraggingSource { display: none; } /** * An element with .dndPlaceholder class will be added as child of the dnd-list * while the user is dragging over it. */ .dropzone .dndPlaceholder { background-color: #ddd; min-height: 42px; display: block; position: relative; } /***************************** Element Selection *****************************/ .dropzone .selected { background-color: #dff0d8 !important; } .dropzone .selected .box { border-color: #d6e9c6; } /***************************** Element type specific styles *****************************/ .dropzone .item { padding: 10px 15px; } .dropzone .container-element { margin: 10px; } /***************************** Toolbox *****************************/ .toolbox ul { list-style: none; padding-left: 0px; cursor: move; } .toolbox button { margin: 5px; width: 123px; opacity: 1.0; } .toolbox .dndDragging { opacity: 0.5; } .toolbox .dndDraggingSource { opacity: 1.0; } /***************************** Trashcan *****************************/ .trashcan ul { list-style: none; padding-left: 0px; } .trashcan img { width: 100%; -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); filter: grayscale(100%); } .trashcan .dndDragover img { width: 100%; -webkit-filter: none; -moz-filter: none; filter: none; } .trashcan .dndPlaceholder { display: none; }