doodle3d-client/less/popup.less

95 lines
1.3 KiB
Plaintext
Raw Permalink 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);
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
display:none;
user-select: text;
}
.popup {
2014-01-16 22:51:19 +01:00
background-color: #fff;
border: 2px solid #222;
2014-01-09 17:05:03 +01:00
border-radius: 15px;
2014-01-16 22:51:19 +01:00
box-shadow: 0px 2px 6px 0px rgba(16, 16, 16, 0.65);
2014-01-09 17:05:03 +01:00
position: absolute;
left: 50%;
2014-01-16 22:51:19 +01:00
top:50%;
2014-01-09 17:05:03 +01:00
}
.popup .content {
2014-01-16 22:51:19 +01:00
/*margin: 5%;*/
margin: 15px;
2014-01-09 17:05:03 +01:00
}
.popup {
display: none;
}
2014-01-10 17:21:43 +01:00
#popupWordArt {
2014-01-16 22:51:19 +01:00
width: 330px;
height:210px;
margin-left: -165px;
margin-top: -105px;
2014-01-10 17:21:43 +01:00
input[type="text"] {
2014-01-16 22:51:19 +01:00
width: 98%;
2014-01-10 17:21:43 +01:00
}
#btnWordArtOk {
float: right;
2014-01-16 22:51:19 +01:00
margin: 15px 0 0 0;
2014-01-10 17:21:43 +01:00
}
2014-01-09 17:05:03 +01:00
}
#popupScan {
width: 330px;
height:210px;
margin-left: -165px;
margin-top: -105px;
input[type="file"] {
width: 98%;
}
#btnScanOk {
float: right;
margin: 15px 0 0 0;
}
}
2014-01-10 17:21:43 +01:00
#popupShape {
2014-01-16 22:51:19 +01:00
width: 310px;
margin-left: -155px;
height: 230px;
margin-top: -115px;
top: 50%;
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;
}