cms/app-client/app/styles/modal.scss
author nowmad@23.1.168.192.in-addr.arpa
Thu, 21 Jan 2016 21:07:02 +0100
changeset 94 62984937a062
parent 84 36f84e8f1ad5
child 95 f7ab931581af
permissions -rw-r--r--
- add params when modal appear so we can come back right on this document modal - load the complete document info when modal is called or when played

.overlay {
    background-color: gray;
    height: 100vh;
    left: 0;
    opacity: 0.77;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 50;
}

.dialog {
    background: #fff none repeat scroll 0 0;
    border: 4px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px #222;
    height: 300px;
    left: 50%;
    margin-left: -250px;
    margin-top: -150px;
    padding: 10px;
    position: fixed;
    top: 50%;
    width: 500px;
    z-index: 50;
}

.dialog h1{
  margin-top: 0;
}