mirror of
https://github.com/pulsar-edit/pulsar.git
synced 2024-11-10 18:24:09 +03:00
45 lines
639 B
Plaintext
45 lines
639 B
Plaintext
.overlay {
|
|
position: absolute;
|
|
left: 50%;
|
|
width: 500px;
|
|
margin-left: -250px;
|
|
z-index: 9999;
|
|
box-sizing: border-box;
|
|
|
|
background-color: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
.overlay .editor.mini {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.overlay .message {
|
|
padding-top: 5px;
|
|
font-size: 11px;
|
|
}
|
|
|
|
.overlay.mini {
|
|
width: 200px;
|
|
margin-left: -100px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.overlay.from-top {
|
|
top: 0;
|
|
border-top: none;
|
|
border-top-left-radius: 0;
|
|
border-top-right-radius: 0;
|
|
}
|
|
|
|
.overlay.from-bottom {
|
|
bottom: 0;
|
|
border-bottom: none;
|
|
border-bottom-left-radius: 0;
|
|
border-bottom-right-radius: 0;
|
|
}
|
|
|
|
.overlay.floating {
|
|
left: auto;
|
|
}
|