Advertisement
rikatoola

F2U ✦ puddle pond | CC

Jun 16th, 2023 (edited)
1,163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 6.18 KB | Source Code | 0 0
  1. <!---
  2.  
  3. beginning of the code.
  4. do note remove my credit tags.
  5. feel free to stitch and edit my codes to your hearts content, just please remember to credit me propperly.
  6.  
  7. if you have any questions, comments, or concerns, please comment on the code profile and ping @honeybree (main account), and i will get back to you asap!
  8.  
  9. colors:
  10. title bg color: #3b4559
  11. box borders: #5f749c
  12. fontawesome icons: #5f749c
  13. other box colors: #3b4559
  14. font color:
  15.  
  16. --->
  17.  
  18. <div class="card m-2 mx-auto border-0" style="border-radius: 0px; width: 600px; background-color: transparent;">
  19.    
  20. <!--- title box --->
  21.  
  22. <div class="card bg-faded p-3" style="background-color: #3b4559; border-radius: 0px; width: 600px; border-top: 1px solid #5f749c; border-right: 1px solid #5f749c; border-left: 1px solid #5f749c; Border-bottom: 1px solid #5f749c;">
  23.     <div class="row no-gutters">
  24.        
  25.         <!--- dA styled / equivelant font awesome icons, can change to whatever though! --->
  26.         <div class="col-lg-1">
  27.             <p class="text-center" style="font-size: 25px; color: #5f749c;"><i class="fa fa-light fa-file-lines"></i></p>
  28.         </div>
  29.        
  30.         <!--- label/title. change it to whatever you want! could even be a quote! --->
  31.         <div class="col-lg-10">
  32.             <p class="text-left" style="color: #929bad; font-size: 25px;">PETRICHOR</p>
  33.         </div>
  34.        
  35.         <div class="col-lg-1">
  36.             <p class="text-center" style="font-size: 25px; color: #5f749c;"><i class="fa fa-light fa-square-pen"></i></p>
  37.         </div>
  38.     </div>
  39. </div>
  40.  
  41. <!--- end of title box --->
  42.  
  43. <!--- main content box --->
  44.  
  45. <div class="card p-5" style="border-radius: 0px; width: 600px; border-top: 0px solid #5f749c; border-right: 1px solid #5f749c; border-left: 1px solid #5f749c; Border-bottom: 1px solid #5f749c;
  46. background-image: url('https://64.media.tumblr.com/90284d42efdd170d63b28f10713526a3/tumblr_ortss8O8zH1rnbw6mo1_540.gif');
  47. background-size: 100%;
  48. background-position: top;">
  49.    
  50.     <div class="card p-2 mb-4" style="border: 1px solid #5f749c; background-color: #3b4559; border-radius: 0px;">
  51.         <div class="row no-gutters">
  52.            
  53.             <!--- name and nickname. can make it whatever you'd like though! --->
  54.             <div class="col-lg-4">
  55.                 <p class="text-center" style="color: #929bad; font-size: 14px;">
  56.                     <b>NAME</b> nickname
  57.                 </p>
  58.             </div>
  59.            
  60.             <div class="col-lg-1">
  61.             </div>
  62.            
  63.             <!--- age / etc! --->
  64.             <div class="col-lg-7">
  65.                 <p class="text-left" style="color: #929bad; font-size: 14px;">
  66.                     age ▪ pronouns ▪ etc ▪ etc
  67.                 </p>
  68.             </div>
  69.         </div>
  70.     </div>
  71.    
  72.     <!--- aesthetic images --->
  73.     <div class="row no-gutters">
  74.         <div class="col-lg-2">
  75.             <div class="card bg-faded mb-4" style="border-radius: 0px; border: 1px solid #5f749c;
  76.            background-image: url('https://orig00.deviantart.net/c99a/f/2018/126/0/7/07d61d2c31a64bdade38ccfd0bc4ad8d-dcau8th.gif');
  77.            background-size: 300%;
  78.            background-position: top;
  79.            height: 80px;"></div>
  80.         </div>
  81.        
  82.         <div class="col-lg-1"></div>
  83.        
  84.         <div class="col-lg-4">
  85.             <div class="card bg-faded mb-4" style="border-radius: 0px; border: 1px solid #5f749c;
  86.            background-image: url('https://media.tenor.com/WPqFfKvgIbUAAAAd/stars-train.gif');
  87.            bbackground-size: 100%;
  88.            background-position: center;
  89.            height: 80px;"></div>
  90.         </div>
  91.        
  92.         <div class="col-lg-1"></div>
  93.        
  94.         <div class="col-lg-4">
  95.             <div class="card bg-faded mb-4" style="border-radius: 0px; border: 1px solid #5f749c;
  96.            background-image: url('https://i.imgur.com/SRv4doc.gif');
  97.            background-size: 200%;
  98.            background-position: top left;
  99.            height: 80px;"></div>
  100.         </div>
  101.     </div>
  102.    
  103.     <!--- divider --->
  104.     <div class="card bg-faded mb-4" style="border-radius: 0px;"></div>
  105.    
  106.     <!--- little "journal doll", whatever you want to aesthetically go here! --->
  107.     <div class="row no-gutters">
  108.         <div class="col-lg-5">
  109.             <div class="card h-100 border-0" style="border-radius: 0px;
  110.            background-color: transparent;
  111.            background-image: url('https://i.pinimg.com/originals/4e/b7/bd/4eb7bda23bf456a53fd6ba84c1048ba6.gif');
  112.            background-size: 100%;
  113.            background-position: top center;
  114.            height: 50px;"></div>
  115.         </div>
  116.        
  117.         <!--- about you --->
  118.         <div class="col-lg-7">
  119.             <div class="card bg-faded p-2 mb-4" style="color: #929bad; border: 1px solid #5f749c; background-color: #3b4559; border-radius: 0px; height: 105px; overflow-y: scroll;">
  120.                 <p class="text-center" style="font-size: 12px;">
  121.                     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. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
  122.                 </p>
  123.             </div>
  124.            
  125.             <!--- DNI's or whatever you want to put here (BYF, triggers, etc can be anything --->
  126.             <div class="card bg-faded p-2" style="color: #929bad; border: 1px solid #5f749c; background-color: #3b4559; border-radius: 0px;">
  127.                 <p class="text-center" style="font-size: 12px;">
  128.                     <b>DNI</b> ▪ put everything here.
  129.                 </p>
  130.             </div>
  131.         </div>
  132.     </div>
  133.    
  134. </div>
  135.  
  136. <!--- end of main content box --->
  137.  
  138. <!--- coding credit. DO NOT REMOVE!! --->
  139.  
  140. <p class="text-center p-2" style="font-size: 12px; opacity: 0.3;">
  141.     <a href="https://toyhou.se/bumblebree/characters"><i class="fa fa-solid fa-code"></i></a>
  142. </p>
  143.  
  144. </div>
  145.  
  146. <!--- end of code --->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement