You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

overlay.css 830B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. .overlay {
  2. position: fixed;
  3. left: 0;
  4. top: 0;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 1013;
  8. background: #000000; /* Old browsers */
  9. opacity: 0.75;
  10. display: block;
  11. }
  12. .overlay_container {
  13. width: 100%;
  14. height: 100%;
  15. position: fixed;
  16. z-index: 1013;
  17. }
  18. .overlay_content {
  19. color: #fff;
  20. font-weight: normal;
  21. font-size: 20px;
  22. text-align: center;
  23. width: 400px;
  24. height: 250px;
  25. top: 50%;
  26. left: 50%;
  27. position:absolute;
  28. margin-top: -125px;
  29. margin-left: -200px;
  30. }
  31. .overlay_avatar {
  32. width: 200px;
  33. height: 200px;
  34. position: relative;
  35. border-radius: 100px;
  36. z-index: 1013;
  37. float: left;
  38. margin-left: 100px;
  39. }
  40. .overlay_text {
  41. position: relative;
  42. width: 400px;
  43. z-index: 1013;
  44. margin-top: 20px;
  45. float: left;
  46. }