diff -r 645786bb8587 -r 36f84e8f1ad5 cms/app-client/app/styles/modal.scss --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/cms/app-client/app/styles/modal.scss Fri Jan 15 15:49:42 2016 +0100 @@ -0,0 +1,30 @@ +.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; +}