2016-09-15 01:34:25 +00:00
|
|
|
.modal {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
background-color: rgba(0, 0, 0, 0.3);
|
|
|
|
padding: 0 20px;
|
|
|
|
z-index: 100;
|
|
|
|
overflow-y: auto;
|
|
|
|
|
|
|
|
.content {
|
|
|
|
position: relative;
|
|
|
|
max-width: 350px;
|
|
|
|
margin: 100px auto;
|
|
|
|
padding: 1em;
|
2018-07-09 21:29:13 +00:00
|
|
|
background-color: $color-white;
|
2016-09-15 01:34:25 +00:00
|
|
|
border-radius: $border-radius;
|
|
|
|
overflow: auto;
|
2018-05-04 20:07:52 +00:00
|
|
|
box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
|
2016-09-15 01:34:25 +00:00
|
|
|
}
|
|
|
|
}
|