0
0
mirror of https://github.com/Doodle3D/doodle3d-client.git synced 2024-06-01 20:34:31 +02:00
doodle3d-client/less/progressbar.less

44 lines
913 B
Plaintext
Raw Normal View History

2014-01-09 17:05:03 +01:00
/*
PROGRESS GUAGE
*/
2014-01-10 17:21:43 +01:00
#progressbarCanvasContainerParent {
2014-01-09 17:05:03 +01:00
position:relative;
width:100%;
}
#progressbarCanvasContainer {
position: relative;
2014-01-18 19:00:34 +01:00
width: 70%; //50%
2014-01-09 17:05:03 +01:00
float:right;
border: solid #000;
border-width: 2px 0 2px 2px;
border-radius: 15px 0 0 15px;
/*padding: 5px 0px 5px 5px;*/
padding: 5px;
background-color: #fff;
-webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
transition: right .40s cubic-bezier(0.68, -0.55, 0.265, 1.55);
2014-01-18 19:00:34 +01:00
right: -100%; //70%;
2014-01-09 17:05:03 +01:00
margin: 5% 0%;
}
#progressbarCanvas {
top: 0;
right: 0;
bottom: 0;
left: 0;
width: 100%;
height: auto;
background-color: #fff;
// border: solid #000;
// border-width: 2px 0 2px 2px;
// border-radius: 15px 0 0 15px;
// padding: 5px 0px 5px 5px;
//
// -webkit-box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
// box-shadow: 0 2px 5px rgba(37, 37, 37, 0.35);
}