Advertisement
CornyGoose

Moibeal CSS

Feb 18th, 2020
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.21 KB | None | 0 0
  1. body {
  2. display: block;
  3. position: absolute;
  4. top: 0;
  5. left: 0;
  6. bottom: 0;
  7. right: 0;
  8. width: 100%;
  9. height: 100%;
  10. border: 0;
  11. margin: 0;
  12. padding: 0;
  13. background-color: #F4F3FB;
  14. background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png");
  15. background-size: 10%;
  16. background-position: center;
  17. background-repeat: repeat;
  18. z-index: 0;
  19. }
  20.  
  21. .picture {
  22. background-image: url(https://pbs.twimg.com/media/EGWTdxFVAAANdQY.jpg);
  23. background-size: 100%;
  24. background-repeat: no-repeat;
  25. position: absolute;
  26. border: .5vh solid #0E0D1D;
  27. border-bottom: .5vh solid #0E0D1D;
  28. top: 17.7%;
  29. left: 29.2%;
  30. width: 90vh;
  31. height: 61vh;
  32. z-index: 2;
  33. }
  34.  
  35.  
  36. .p {
  37. margin-left: 1vh;
  38. text-indent: 10%;
  39. }
  40.  
  41. .leftbox {
  42. position: absolute;
  43. background-color: #EB9EC0;
  44. background-image: url("https://i.imgur.com/v1fwEbg.png");
  45. background-size: 120%;
  46. font-family: 'Satisfy', cursive;
  47. font-size: 4vh;
  48. color: #262A8D;
  49. width: 50vh;
  50. height: 70vh;
  51. left: 10vh;
  52. top: 14vh;
  53. z-index: 2;
  54. overflow-y: scroll;
  55. -webkit-box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  56. box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  57. }
  58.  
  59. .rightbox {
  60. position: absolute;
  61. background-color: #EB9EC0;
  62. background-image: url("https://i.imgur.com/YCCOLf2.png");
  63. background-size: 120%;
  64. font-family: 'Satisfy', cursive;
  65. font-size: 4vh;
  66. color: #262A8D;
  67. width: 50vh;
  68. height: 70vh;
  69. right: 10vh;
  70. top: 14vh;
  71. z-index: 2;
  72. overflow-y: scroll;
  73. -webkit-box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  74. box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  75. }
  76.  
  77. .topbox {
  78. position: absolute;
  79. background-color: #708CBC;
  80. background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png");
  81. background-size: 20%;
  82. font-family: 'Satisfy', cursive;
  83. font-size: 4vh;
  84. color: #FDFBFE;
  85. width: 90vh;
  86. height: 14.5vh;
  87. left: 29.4%;
  88. top: 1.5vh;
  89. z-index: 2;
  90. overflow-y: scroll;
  91. -webkit-box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  92. box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  93. }
  94.  
  95. .botbox {
  96. position: absolute;
  97. background-color: #708CBC;
  98. background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png");
  99. background-size: 20%;
  100. font-family: 'Satisfy', cursive;
  101. font-size: 4vh;
  102. color: #FDFBFE;
  103. width: 90vh;
  104. height: 14.5vh;
  105. left: 29.4%;
  106. bottom: 3vh;
  107. z-index: 2;
  108. overflow-y: scroll;
  109. -webkit-box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  110. box-shadow: 0px 0px 1vh 1vh rgba(0,0,0,0.38);
  111. }
  112.  
  113. .strip {
  114. position: absolute;
  115. background-color: #708CBC;
  116. background-image: url("https://www.transparenttextures.com/patterns/gray-floral.png");
  117. background-size: 15%;
  118. width: 100%;
  119. height: 40.6vh;
  120. left: 0vh;
  121. top: 28.75vh;
  122. z-index: 1;
  123. }
  124.  
  125. .triangletopright {
  126. position: fixed;
  127. width: 0;
  128. height: 0;
  129. right: 27.6%;
  130. top: 17.4%;
  131. border-left: 5vh solid transparent;
  132. border-right: 5vh solid transparent;
  133. border-top: 5vh solid #0E0D1D;
  134. transform: rotate(225deg);
  135. z-index: 3;
  136. }
  137.  
  138. .triangletopleft {
  139. position: absolute;
  140. width: 0;
  141. height: 0;
  142. left: 27.92%;
  143. top: 17.3%;
  144. border-left: 5vh solid transparent;
  145. border-right: 5vh solid transparent;
  146. border-top: 5vh solid #0E0D1D;
  147. transform: rotate(135deg);
  148. z-index: 3;
  149. }
  150.  
  151. .trianglebotleft {
  152. position: absolute;
  153. width: 0;
  154. height: 0;
  155. left: 27.9%;
  156. top: 75.4%;
  157. border-left: 5vh solid transparent;
  158. border-right: 5vh solid transparent;
  159. border-top: 5vh solid #0E0D1D;
  160. transform: rotate(45deg);
  161. z-index: 3;
  162. }
  163.  
  164. .trianglebotright {
  165. position: fixed;
  166. width: 0;
  167. height: 0;
  168. right: 27.6%;
  169. top: 75.4%;
  170. border-left: 5vh solid transparent;
  171. border-right: 5vh solid transparent;
  172. border-top: 5vh solid #0E0D1D;
  173. transform: rotate(315deg);
  174. z-index: 3;
  175. }
  176.  
  177. .botrightdiagonalline {
  178. position: fixed;
  179. width: 160vh;
  180. height: 25vh;
  181. top: 35vh;
  182. left: -22vh;
  183. z-index: -1;
  184. background-color: #E778AD;
  185. background-image: url("https://www.transparenttextures.com/patterns/squares.png");
  186. background-size: 2.4%;
  187. transform: rotate(315deg);
  188. }
  189.  
  190. .botleftdiagonalline {
  191. position: fixed;
  192. width: 160vh;
  193. height: 25vh;
  194. top: 35vh;
  195. right: -22vh;
  196. z-index: -1;
  197. background-color: #E778AD;
  198. background-image: url("https://www.transparenttextures.com/patterns/squares.png");
  199. background-size: 2.4%;
  200. transform: rotate(45deg);
  201. }
  202.  
  203. .topleftdiagonalline {
  204. position: fixed;
  205. width: 160vh;
  206. height: 25vh;
  207. top: 35vh;
  208. left: -25vh;
  209. z-index: 0;
  210. background-color: #E778AD;
  211. background-image: url("https://www.transparenttextures.com/patterns/squares.png");
  212. background-size: 2.4%;
  213. transform: rotate(45deg);
  214. }
  215.  
  216. .toprightdiagonalline {
  217. position: fixed;
  218. width: 160vh;
  219. height: 25vh;
  220. top: 35vh;
  221. right: -25vh;
  222. z-index: -1;
  223. background-color: #E778AD;
  224. background-image: url("https://www.transparenttextures.com/patterns/squares.png");
  225. background-size: 2.4%;
  226. transform: rotate(135deg);
  227. }
  228.  
  229. .nametexttop {
  230. position: absolute;
  231. left: 14.5vw;
  232. top: 4vh;
  233. background: #000000;
  234. width: 70vw;
  235. height: 7vw;
  236. font-family: 'Satisfy', cursive;
  237. font-size: 8vh;
  238. background: url(https://media2.giphy.com/media/nNQx8jrIvfXoc/source.gif) -110px -260px repeat;
  239. -webkit-text-fill-color: transparent;
  240. -webkit-background-clip: text;
  241. display: block;
  242. text-align: center;
  243. letter-spacing: .2vw;
  244. -webkit-transition: opacity 2s linear;
  245. -moz-transform: skew(-10deg, 0deg);
  246. -webkit-transform: skew(-10deg, 0deg);
  247. -o-transform: skew(-10deg, 0deg);
  248. -ms-transform: skew(-10deg, 0deg);
  249. transform: skew(-10deg, 0deg);
  250. z-index: 4;
  251. }
  252.  
  253. .nametextbottom {
  254. position: absolute;
  255. left: 15vw;
  256. bottom: 3vh;
  257. background: #000000;
  258. width: 70vw;
  259. height: 5vw;
  260. font-family: 'Satisfy', cursive;
  261. font-size: 8vh;
  262. background: url(https://media2.giphy.com/media/nNQx8jrIvfXoc/source.gif) -110px -260px repeat;
  263. -webkit-text-fill-color: transparent;
  264. -webkit-background-clip: text;
  265. display: block;
  266. text-align: center;
  267. letter-spacing: .2vw;
  268. -webkit-transition: opacity 2s linear;
  269. -moz-transform: skew(-10deg, 0deg);
  270. -webkit-transform: skew(-10deg, 0deg);
  271. -o-transform: skew(-10deg, 0deg);
  272. -ms-transform: skew(-10deg, 0deg);
  273. transform: skew(-10deg, 0deg);
  274. z-index: 4;
  275. }
  276.  
  277.  
  278. ::-webkit-scrollbar-track {
  279. border-radius: 1vw;
  280. }
  281.  
  282. ::-webkit-scrollbar {
  283. width: 0.2vw;
  284. }
  285.  
  286. ::-webkit-scrollbar-thumb {
  287. border-radius: 1vw;
  288. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement