Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. *,
  2. *:after,
  3. *:before{
  4. -webkit-box-sizing: border-box;
  5. -moz-box-sizing: border-box;
  6. box-sizing: border-box;
  7. margin: 0;
  8. padding: 0;
  9. -webkit-overflow-scrolling: touch;
  10. -webkit-font-smoothing: antialiased;
  11. }
  12. html,body{
  13. position: relative;
  14. font-family: sans-serif;
  15. width: 100%;
  16. height: 100%;
  17. font-size: 16px;
  18. text-align: center;
  19. }
  20.  
  21. a.btn{
  22. position: relative;
  23. text-decoration: none;
  24. font-size: 1rem;
  25. color: #fff;
  26. background: #333;
  27. padding: 1rem 2rem;
  28. border-radius: 6px;
  29. top: 50%;
  30. margin-top: -1.5rem;
  31. }
  32.  
  33. .mordal-panel{
  34. position: fixed;
  35. width: 100vw;
  36. height: 100vh;
  37. top: 0;
  38. left: 0;
  39. padding: 2rem 1rem;
  40. background: rgba(0,0,0,0.6);
  41. z-index: 10;
  42. overflow: scroll;
  43. }
  44. .mordal-content{
  45. position: relative;
  46. top: 0;
  47. padding: 1rem;
  48. width: 60%;
  49. left: 20%;
  50. margin: 1rem 0;
  51. background: #fff;
  52. z-index: 15;
  53. height: auto;
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement