Advertisement
jungjnsoul

♡ JUNGJNSOUL'S POPUP PT 2

Apr 16th, 2019
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.42 KB | None | 0 0
  1. /* POP-UP STYLING! */
  2.  
  3. .popup_block{
  4. display:none;
  5. background:#e3e3e3; /* CHANGE BACKGROUND COLOR!!! */
  6. padding:20px 20px 0px 20px;
  7. border-radius:5px;
  8. float:left;
  9. position:fixed;
  10. top:50%;left:50%;
  11. z-index: 99999;
  12. -webkit-box-shadow: 0px 0px 20px #000
  13. -moz-box-shadow: 0px 0px 20px #000;
  14. box-shadow: 0px 0px 20px #000;
  15. width:300px; height:auto;
  16. }
  17.  
  18. .box1top {
  19. width:330px; height:10px;
  20. padding:5px; background-color:#222; /* CHANGE TOPPER COLOR */
  21. position:absolute;
  22. top:-10px; bottom:0px; left:0px; right:0px;
  23. border-radius:5px 5px 0px 0px;
  24. }
  25.  
  26. *html #fade {position: absolute;}
  27. *html .popup_block {position: absolute;}
  28. #fade {
  29. display:none;
  30. position:fixed;
  31. left:0px;
  32. top:0px;
  33. width:100%;
  34. height:100%;
  35. z-index:9999;
  36. background:#000;
  37. opacity:0.5;
  38. }
  39.  
  40.  
  41. /* --- hi! this is the actual admin
  42. information blurbs, be really
  43. careful when if u edit bc they're
  44. a bit fickle.
  45.  
  46. QUICK CHEAT SHEET:
  47. ADMINB - LEFT ADMIN BOX
  48. ADMINQ - LEFT ADMIN TEXT BOX
  49. ADMINC - LEFT ADMIN IMAGE
  50. ADMIND - RIGHT ADMIN BOX
  51. ADMINR - RIGHT ADMIN TEXT BOX
  52. ADMINE - RIGHT ADMIN IMAGE --- */
  53.  
  54. #adminb {
  55. width:300px;
  56. height:100px; /* i restricted the height of each section just so it would match up with the icons, it will scroll automatically if your text is longer - but you don’t have to include this bit if you don’t want to */
  57. background-color: transparent;
  58. padding-bottom:5px;
  59. margin-bottom:10px;
  60. margin-left:10px;
  61. margin-top:10px;
  62. overflow:none; }
  63.  
  64. .adminq {
  65.  
  66. font-size:10px;
  67. padding:0px 0px 0px 15px;
  68. width:190px; height:80px;
  69. overflow:auto;
  70. }
  71.  
  72. .adminq h1 {
  73. font-size:11px;
  74. text-transform:uppercase;
  75. }
  76.  
  77. #adminc img {
  78. float:left; /* you can change this to right if you prefer your image on the other side */
  79. margin-left:4px;
  80. margin-top:4px;
  81. border:5px solid #000; /* icon border color */
  82. border-radius:100%;
  83. width:55px;
  84. height:55px;
  85. padding:5px;
  86. -webkit-transition:all 0.3s ease-out;
  87. -moz-transition:all 0.3s ease-out;
  88. transition:all 0.3s ease-out; }
  89.  
  90. /* the section below is completely optional, but it’s just an additional style option for an effect when you hover over an image */
  91.  
  92. #adminc:hover img {
  93. border:5px solid #eee; /* icon border hover color */
  94. -webkit-transition:all 0.5s ease-out;
  95. -moz-transition:all 0.5s ease-out;
  96. transition:all 0.5s ease-out; }
  97.  
  98. #admind {
  99. width:300px;
  100. height:100px; /* i restricted the height of each section just so it would match up with the icons, it will scroll automatically if your text is longer - but you don’t have to include this bit if you don’t want to */
  101. background-color: transparent;
  102. padding-bottom:5px;
  103. margin-bottom:10px;
  104. margin-left:10px;
  105. margin-top:-8px;
  106. overflow:none; }
  107.  
  108. .adminr {
  109.  
  110. font-size:10px;
  111. padding:0px 0px 15px 0px;
  112. width:190px; height:80px;
  113. overflow:auto;
  114. }
  115.  
  116. .adminr h1 {
  117. font-size:11px;
  118. text-transform:uppercase;
  119. }
  120.  
  121. #admine img {
  122. float:right; /* you can change this to right if you prefer your image on the other side */
  123. margin-right:16px;
  124. margin-top:4px;
  125. border:5px solid #000; /* icon border color */
  126. border-radius:100%;
  127. width:55px;
  128. height:55px;
  129. padding:5px;
  130. -webkit-transition:all 0.3s ease-out;
  131. -moz-transition:all 0.3s ease-out;
  132. transition:all 0.3s ease-out; }
  133.  
  134. /* the section below is completely optional, but it’s just an additional style option for an effect when you hover over an image */
  135.  
  136. #admine:hover img {
  137. border:5px solid #eee; /* icon border hover color */
  138. -webkit-transition:all 0.5s ease-out;
  139. -moz-transition:all 0.5s ease-out;
  140. transition:all 0.5s ease-out; }
  141.  
  142. .notificationtext {
  143. color:#222; /* TOPPER TITLE TEXT */
  144. font-size:9px;
  145. text-align:center;
  146. margin-top:-11px;
  147. text-transform:uppercase;
  148. letter-spacing:1px;
  149. font-weight:bold;
  150. }
  151.  
  152. .notificationdot {
  153. border-radius:100%;
  154. height:7px; width:7px;
  155. background-color:#ae4b33; /* CHANGE DOT COLOR */
  156. margin-top:2px; margin-left:2px;
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement