Guest User

Untitled

a guest
Mar 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. img {
  2. display: block;
  3. max-width: 100%;
  4. }
  5.  
  6. img {
  7. display: block;
  8. max-width: 100%;
  9. max-height: 100%;
  10. }
  11.  
  12. * {
  13. box-sizing: border-box;
  14. }
  15. .modal-wrapper {
  16. position: fixed;
  17. top: 0;
  18. left: 0;
  19. right: 0;
  20. bottom: 0;
  21. background: rgba(0,0,0,.5);
  22. overflow-y: auto;
  23. }
  24. .modal {
  25. margin: 30px auto;
  26. position: relative;
  27. max-height: 100%;
  28. background-color: #ccc;
  29. height: 100%;
  30. }
  31. .modal-content{
  32. height: 100%;
  33. display: flex;
  34. flex-direction: column;
  35. }
  36. .modal-header{
  37. height: 65px;
  38. background-color: red;
  39. }
  40. .modal-body{
  41. flex:1;
  42. background-color: green;
  43. padding: 80px 15px 80px 15px;
  44. overflow-y: scroll;
  45. }
  46. .modal-footer{
  47. height: 65px;
  48. background-color: red;
  49. }
Add Comment
Please, Sign In to add comment