mirror of
https://github.com/Doodle3D/doodle3d-client.git
synced 2024-11-05 03:33:23 +01:00
21 lines
629 B
Plaintext
21 lines
629 B
Plaintext
|
#verticalShapes {
|
||
|
position:absolute;
|
||
|
right: -56px;
|
||
|
bottom: 15px;
|
||
|
|
||
|
.verticalshape {
|
||
|
width: 50px;
|
||
|
height: 50px;
|
||
|
border: 2px solid #333;
|
||
|
border-radius: 0px 5px 5px 0px;
|
||
|
margin-top: 4px;
|
||
|
/*background-color: #f0f;*/
|
||
|
cursor: pointer;
|
||
|
|
||
|
&.straight { background: url('../img/vertical_shape_icons/straight.png') no-repeat; }
|
||
|
&.diverging { background: url('../img/vertical_shape_icons/diverging.png') no-repeat; }
|
||
|
&.converging { background: url('../img/vertical_shape_icons/converging.png') no-repeat; }
|
||
|
&.sinus { background: url('../img/vertical_shape_icons/sinus.png') no-repeat; }
|
||
|
}
|
||
|
|
||
|
}
|