Advertisement
VinceTriesToCode

Dropshadow Small Mobile

Mar 18th, 2023
1,002
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5.27 KB | None | 0 0
  1. <!--
  2. My first ever real code oh man
  3. I hope you enjoy it, was fun to make!
  4.  
  5. Please make sure to acknowledge my TOS before using!
  6. https://horriifiied.weebly.com/tos.html
  7.  
  8. Thank you !
  9.  
  10.  
  11. Colours in order of darkest to lightest.
  12. Drop Shadow Box + music - #001219
  13. Colour 2 - #005f73
  14. Colour 3 - #0a9396
  15. Colour 4 - #94d2bd
  16. Colour 5 - #e9d8a6
  17. Colour 6 - #edf6f9
  18.  
  19.  
  20. -->
  21. <!-- Big background image -->
  22. <div style="position:absolute;top:0;bottom:0;left:0; background:url(IMG URL HERE) fixed center;background-size:cover;width:100%;z-index:-1;" alt="background image">
  23. </div>
  24. <!-- End big background image, start dropshadow box -->
  25. <div class="container-fluid pt-3 pb-0 px-2" style="max-width:600px; background:#001219">
  26.  
  27. <!-- Picture and music box start -->
  28.     <div class="row">
  29.             <div class="col-xs-12 col-md-5 order-0" style="background:#e9d8a6;height:330px;">
  30.  
  31. <!-- Profile picture -->
  32.                  <img src="https://upload.wikimedia.org/wikipedia/commons/thumb/3/3f/Placeholder_view_vector.svg/681px-Placeholder_view_vector.svg.png" class="mx-auto d-block img-thumbnail img-responsive  my-3" style="max-height:200px;background:#edf6f9" alt="profile picture">
  33.  
  34. <!-- Song name and artist name -->
  35.                  <p class="text-center text-uppercase font-weight-bold m-0 p-0" style="font-size:15px;color:#0a9396">Song</p>
  36.                  <p class="text-center text-uppercase p-0 m-0" style="font-size:10px;color:#005f73;">Artist</p>
  37.                  
  38. <!-- The player -->
  39.     <div class="justify-content-center py-3">
  40.     <span class="my-auto">
  41.     <i class="fas fa-play" style="font-size:25px;color:#001219;"></i>
  42. <!-- Basically you see that letter and number jumble after "watch?v=" and "&ab.." on a youtube video, copy it, and then paste that jumble between "embed/" and  "?modestbranding=1" here and bam music -->
  43.     <iframe class="flex-fill" src="https://www.youtube-nocookie.com/embed/URLBITS?modestbranding=1" frameborder="0" style="height: 25px; width: 25px; margin-left:-27px; margin-top: 5px; position: absolute; z-index:1; opacity:0;"></iframe>
  44.                      
  45. </span>
  46. </div>
  47. <!-- Music player and left box end -->
  48. </div>
  49.  
  50. <!-- Name and information box start -->
  51.         <div class="col-xs-12 col-md-7 order-1" style="background:#0a9396;height:330px;">
  52.                         <h1 class="text-uppercase text-center pt-4 pb-1" style="font-size:20px; letter-spacing:4px;color:#94d2bd">
  53.                            
  54. <!-- Username and 2 animated icons on either side! You can remove them if you like or if there is a different animation you prefer you can change "fa-beat-fade" to any of these! https://fontawesome.com/docs/web/style/animate -->
  55.                             <i class="fas fa-heart fa-beat-fade" style="color:#edf6f9"></i>
  56.                         <span style="color:#e9d8a6">U</span>ser <span style="color:#e9d8a6">N</span>ame <i class="fas fa-heart fa-beat-fade" style="color:#edf6f9"></i></h1>
  57.  
  58. <!-- Traits, can be anything doesn't need to be age or pronouns -->
  59.                             <p class="text-center" style="color:#edf6f9">Age ▪ Pronouns ▪ Etc </p>
  60.                         <hr class="p-0 m-0">
  61.                        
  62. <!-- Little paragraph, summary or what have you -->
  63.                             <div class="py-2" style="overflow:hidden">
  64.                                 <div class="text-justify mx-auto" style="overflow-y:auto; width:310px">
  65.                         <p class="pr-1" style="color:#e9d8a6; height:140px;">This box scrolls! Feel free to write as much as you like! Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.</p>
  66.                             </div></div>
  67.                         <hr class="p-0 m-0">
  68.  
  69. <!-- Art statuses, text-success is green, text-warning is yellow, and text-danger is red -->
  70.                         <div class="py-2">
  71.                         <div class="justify-content-between pt-2">
  72.                             <span class="font-weight-bold" style="color:#005f73">Commissions</span>
  73.                             <span style="color:#edf6f9" class="font-weight-bold">Open</span>
  74.                         </div>
  75.                         <div class="justify-content-between">
  76.                             <span class="font-weight-bold" style="color:#005f73">Art Trades</span>
  77.                             <span style="color:#001219" class="font-weight-bold">Closed</span>
  78.                         </div>
  79.                         <div class="justify-content-between">
  80.                             <span class="font-weight-bold" style="color:#005f73">Info</span>
  81.                             <a href="LINK" target="_blank" class="font-weight-bold" style="color:#94d2bd;">Link</a>
  82.                         </div></div>
  83.        
  84.         </div>
  85. <!-- End right box -->
  86.  
  87.  
  88. <!-- Credit, do not remove please !! -->
  89.     </div>
  90.     <div class="justify-content-end py-1" style="font-size:10px;"><a href="https://toyhou.se/HORRIIFIIED" target="_blank" style="color:#edf6f9"><i class="fa fa-code pl-1"></i></a></div>
  91. </div>
  92. <!-- End everything ! -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement