Advertisement
ChaZayari

Trisha

Jul 7th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.76 KB | None | 0 0
  1. <style>
  2. @import url('https://www.themonster.xyz/styles/fancy-fonts.css');
  3. ::-webkit-scrollbar{width:0.5vh;height:0.1vh;}
  4. ::-webkit-scrollbar-track{border-radius:0;background:transparent;}
  5. ::-webkit-scrollbar-thumb{border-radius:0;background:transparent;}
  6.  
  7.  
  8. /*
  9. The stream of text you see above is the portion of CSS that defines the source of the font, and below that with the 'webkit' tags are what establish whether or not the scrollbars are visible or not.
  10. You can change their visibility by adding a hex color code in place of the word 'transparent'.
  11. For example, background: #000; as opposed to background:transparent;
  12. */
  13.  
  14.  
  15. body{
  16. background: linear-gradient(to right, #f07592, #f794ac, #fa527b);
  17. }
  18.  
  19. /*
  20. This piece of code above covers the entirety of your profile. The 'Body' tag is one of the four base parts of a webpage, and more often than not will only be tampered with involving the background color and/or image.
  21.  
  22. If you'll look, you'll see that the background has been defined as a linear-gradient, this meaning that the color of the background gradually changes in a linear pattern. This is a favorite effect of mine, and it appears in a lot of my layouts, since it can give certain effects when applied in the right areas.
  23.  
  24. If you want to remove this effect, you can just delete the whole 'linear-gradient()' stream, and replace it with a single color code.
  25. */
  26.  
  27. #image{
  28. position: fixed;
  29. bottom: 5vh;
  30. left: 15vw;
  31. box-shadow: -1vh 1vh 1vh #000;
  32. }
  33.  
  34. #image img{
  35. height: 90vh;
  36. }
  37. /*
  38. The most recent sections, both labeled 'image' are what define the placing and details of - you guessed it - the main image. The first block defines the positioning, and how far from the bottom and left it is, as well as the shadowing you see on your profile.
  39. The 'img' bit is what defines the image itself. The top part defines the container for the image, but the img is the photo itself. This defines how tall the image is.
  40. Sometimes you'll see formatting for an image where the entirety of the CSS for the image is one block. When the Image CSS is in this format, the designer, like myself, has to define both the height and the width of the image's container.
  41. Having it in the format you see above makes it easier, as the container adjusts automatically to fit the image's height and width, depending on the height assigned.
  42. */
  43.  
  44. #box{
  45. position: fixed;
  46. padding: 1%;
  47. overflow: auto;
  48. background: radial-gradient(#ffc4d3, #ffc4d3, #ffd4df);
  49. box-shadow: 1vh 1vh 1vh #000;
  50. text-align: center;
  51. height: 30vh;
  52. width: 25vw;
  53. right: 15vw;
  54. bottom: 10vw;
  55. text-shadow: 0 .25vh .75vh #000;
  56. font-family: 'Gotham';
  57. font-size: 2.25vh;
  58. }
  59.  
  60. #title{
  61. position: fixed;
  62. text-align: right;
  63. z-index: 5;
  64. width: 25vw;
  65. right: 15vw;
  66. bottom: 46vh;
  67. height: 20vh;
  68. font-family: 'Ambar Pearl';
  69. font-size: 7vh;
  70. color: #fff;
  71. text-shadow: .5vh .5vh .75vh #000;
  72. }
  73.  
  74. h1{
  75. font-family: 'Beautiful People';
  76. font-size: 4vh;
  77. color: #c28f3e;
  78. }
  79.  
  80. /*
  81. Now, the above blocks of CSS code determine the logistics of the box, the title, and the font in between.
  82. Let's first look at the #box block.
  83. The text in this block of text defines how it's positioned, sized, colored, and how the text inside is defined.
  84. If you look at it from a perfectly logical standpoint, and read it as it is, it's quite simple to decipher just what does what.
  85. The height controls the height of the box, width controls width of the box.
  86. Now, looking at the multiple tags regarding font, I'm sure you're asking yourself 'where are these fonts coming from?'
  87. If you'll recall, I had put a stream of text up top along the lines of '@import url(https://monsterdxyzpdq something or another.'
  88. That is the link to The Monster's font page which they've put up for public use by way of that import URL. It links to a text page listing the multiple sourcings for all of the fonts on Deum's page. Deum being The Monster, of course.
  89. */
  90.  
  91.  
  92.  
  93. #credit {
  94. z-index:1;
  95. position:fixed;
  96. height:20vh;
  97. bottom:0%;
  98. right: 1vw;
  99. filter: drop-shadow(0 0 1vh #fff);
  100. }
  101.  
  102.  
  103.  
  104.  
  105. </style>
  106.  
  107. <div id="image">
  108. <a href="https://imgur.com/a/zgbjw0B"><img src="https://i.imgur.com/SAWoqjw.jpg"></a>
  109. </div>
  110. <div id="title">Trisha</div>
  111. <div id="box">
  112. <h1>Header One.</h1>
  113. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Enim eu turpis egestas pretium aenean pharetra magna. Massa id neque aliquam vestibulum morbi blandit. Nunc vel risus commodo viverra maecenas accumsan lacus vel facilisis. Commodo ullamcorper a lacus vestibulum sed arcu non odio euismod.
  114. </box>
  115.  
  116. <a target="_blank" href="https://roleplay.chat/profile.php?user=From+Shadows+Codes" target="_blank" title="Thanks so much for using this layout! Please inform me of any issues.">
  117. <img src="https://i.imgur.com/4Lo0fbN.png" id="credit"/>
  118. </a>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement