doodle3d-client/less/popup.less

77 lines
1.0 KiB
Plaintext
Raw Normal View History

2014-01-09 17:05:03 +01:00
// @popup-width: 60%;
2014-01-10 13:59:55 +01:00
#popupMask {
2014-01-09 17:05:03 +01:00
background-color: rgba(255, 255, 255, 0.65);
// z-index: 20;
// border: 10px solid red;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
display:none;
user-select: text;
}
.popup {
background-color: white;
border: 2px solid black;
border-radius: 15px;
top: 30%;
position: absolute;
left: 50%;
// margin-left: -@popup-width/2;
// width: @popup-width;
}
.popup .content {
margin: 5%;
}
.popup {
display: none;
}
2014-01-10 17:21:43 +01:00
#popupWordArt {
2014-01-09 17:05:03 +01:00
width: 50%;
margin-left: -50%/2;
2014-01-10 17:21:43 +01:00
input[type="text"] {
width: 100%;
}
#btnWordArtOk {
float: right;
margin: 15px 0 18px 0;
}
2014-01-09 17:05:03 +01:00
}
2014-01-10 17:21:43 +01:00
#popupShape {
width: 30%;
2014-01-09 17:05:03 +01:00
margin-left: -30%/2;
2014-01-10 17:21:43 +01:00
#shapePreview {
// width: 150px;
// height: 150px;
border: 1px solid black;
border-radius: 5px;
}
.lblShapeResolution {
display: inline-block;
}
2014-01-16 17:09:15 +01:00
#iconShapeLessPoints, #iconShapeMorePoints {
margin: 0 0 7px 0;
}
2014-01-10 17:21:43 +01:00
#btnShapeOk {
position: absolute;
bottom: 5%;
right: 3%;
}
2014-01-09 17:05:03 +01:00
}
.columnRight {
float: right;
}