選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_overlay.scss 1.0KB

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