Jade-Everstone

Resort Party! (CQ 2023 February - BS)

Feb 17th, 2023 (edited)
1,818
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 22.56 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2.  
  3. <!--Rules:
  4.  
  5. Resort Party!
  6.  
  7. For the Coders Quarters Feburary 2023 Challenge
  8. Based on the "Flip" Layout by Togo: https://toyhou.se/Togo
  9.  
  10. --edit 3/14/23: title change--
  11.  
  12. You may
  13. -frankenstein with other codes (as long as the creator of said code allows it)
  14. -edit/change as much as you need (example: making character codes into user codes, vice-versa)
  15. -use offsite
  16.  
  17. You may not
  18. -Redistribute, resell, and/or claim its yours
  19. -Remove credit (you're allowed to move & edit it though, just keep it visible)
  20.  
  21. Misc Notes:
  22. -When editing, remember to turn WYSIWYG off! My codes may break otherwise
  23. -Some basic html knowledge is recommended for editing
  24.  
  25. Default Colors (bootstrap vers):
  26. - Main color: bg-primary
  27. - Header text, sidebar icons: text white
  28. - image credit links: #ffffff
  29. - sidebar, character & ref, basic info bgs: bg-faded
  30. - Section header lines: bg-dark
  31. - Dividers: bg-secondary text-secondary
  32.  
  33. - Header fonts: arial
  34.  
  35. Change the colors: Ctrl+f and search for the color you want to change.
  36.  
  37. -->
  38.  
  39. <div class="container" style="max-width:1200px">
  40.    
  41.     <div class="row">
  42.        
  43.        
  44.         <!-- /// Sidebar 1 /// -->
  45.         <div class="col-lg-4 col-xl-3 order-4 order-lg-1 mb-3 mb-lg-0">
  46.            
  47.             <!--Sidebar bg-->
  48.             <div class="card h-100 p-2 mb-1 border-0 rounded-0" style="
  49.                background-image:url(https://images.unsplash.com/photo-1504321946642-8f661bf96ff0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80);
  50.                background-position:center;
  51.                background-size:cover;
  52.                background-attachment:fixed;
  53.                box-shadow:3px 3px 0px rgba(0,0,0,0.25) inset;
  54.                max-width:350px;
  55.                margin-left:auto;margin-right:auto;
  56.                background-color:#f9f4f5">
  57.                
  58.                
  59.                 <!-- /// moodboard /// -->
  60.                 <div class="my-3" style="position:sticky;top:20px;width:200px;margin-left:auto;margin-right:auto;
  61.                    font-size:1.25em;
  62.                    text-shadow:3px 3px 0px rgba(0,0,0,0.25);">
  63.                    
  64.                     <!--image 1-->
  65.                     <div class="bg-primary rounded-0 mb-3 p-1" style="height:30vh;box-shadow:3px 3px 0px rgba(0,0,0,0.25);
  66.                    background-image:url(https://images.unsplash.com/photo-1501426026826-31c667bdf23d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1936&q=80);
  67.                    background-position:center;
  68.                    background-size:cover;">
  69.                        
  70.                         <!--image credit-->
  71.                         <a href="https://unsplash.com/photos/m82uh_vamhg" target="_blank" style="color:#ffffff" data-toggle="tooltip" title="img - unsplash">
  72.                             <i class="fa-solid fa-plane-departure"></i>
  73.                         </a>
  74.                        
  75.                     </div>
  76.                    
  77.                     <!--image 2-->
  78.                     <div class="bg-primary rounded-0 mb-3 p-1" style="height:30vh;box-shadow:3px 3px 0px rgba(0,0,0,0.25);
  79.                    background-image:url(https://images.unsplash.com/photo-1546446587-f0af2037eaa1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2071&q=80);
  80.                    background-position:center;
  81.                    background-size:cover;">
  82.                        
  83.                         <!--image credit-->
  84.                         <a href="https://unsplash.com/photos/b6C2oGuAads" target="_blank" style="color:#ffffff" data-toggle="tooltip" title="img - unsplash">
  85.                             <i class="fa-solid fa-plane-departure"></i>
  86.                         </a>
  87.                        
  88.                     </div>
  89.                    
  90.                     <!--image 3-->
  91.                     <div class="bg-primary rounded-0 mb-3 p-1" style="height:30vh;box-shadow:3px 3px 0px rgba(0,0,0,0.25);
  92.                    background-image:url(https://images.unsplash.com/photo-1529905270444-b5e32acc3bdd?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80);
  93.                    background-position:center;
  94.                    background-size:cover;">
  95.                        
  96.                         <!--image credit-->
  97.                         <a href="https://unsplash.com/photos/Nukqi6L_5DU" target="_blank" style="color:#ffffff" data-toggle="tooltip" title="img - unsplash">
  98.                             <i class="fa-solid fa-plane-departure"></i>
  99.                         </a>
  100.                        
  101.                     </div>
  102.                    
  103.                 </div>
  104.                 <!-- /// end moodboard /// -->
  105.                
  106.             </div>
  107.            
  108.         </div>
  109.         <!-- /// end by Sidebar 1 /// -->
  110.        
  111.        
  112.         <!-- /// Info section /// -->
  113.         <div class="col-lg-5 col-xl-5 order-2 order-lg-2 mb-3 mb-lg-0">
  114.            
  115.             <!--Header-->
  116.             <div class="card bg-primary p-2 mb-2 border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25)">
  117.                 <div class="card-body text-white">
  118.                     <span style="font-weight:bold;font-size:2.5em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.25)">
  119.                         <i class="fa-solid fa-plane"></i>
  120.                         Character Name
  121.                         </span>
  122.                     <hr class="my-0" style="border-color:#ffffff">
  123.                 </div>
  124.             </div>
  125.            
  126.             <p>This section expands!</p>
  127.                
  128.             <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.</p>
  129.                    
  130.             <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.</p>
  131.            
  132.            
  133.             <!--section header-->
  134.             <span style="font-weight:bold;font-size:2em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.1)">
  135.                 <i class="fa-solid fa-island-tropical"></i>
  136.                 Section Title
  137.                 <div class="bg-dark mt-0 mb-3" style="height:3px;width:100%"></div>
  138.             </span>
  139.            
  140.            
  141.             <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.</p>
  142.            
  143.             <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.</p>
  144.            
  145.             <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros. Duis placerat velit vitae massa sodales, eget mattis nibh pellentesque.</p>
  146.            
  147.             <!--divider-->
  148.             <div class="my-3 text-secondary d-flex flex-row align-items-center" style="font-size:25px">
  149.                 <div class="mr-1 bg-secondary" style="height:3px;width:100%"></div>
  150.                 <i class="fa-solid fa-plane"></i>
  151.                 <i class="fa-solid fa-island-tropical"></i>
  152.                 <i class="fa-solid fa-clouds"></i>
  153.             </div>
  154.            
  155.            
  156.             <p><i class="fa-solid fa-plane"></i> Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  157.            
  158.             <p><i class="fa-solid fa-plane"></i> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
  159.            
  160.             <p><i class="fa-solid fa-plane"></i> It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  161.            
  162.            
  163.             <!--divider-->
  164.             <div class="my-3 text-secondary d-flex flex-row align-items-center" style="font-size:25px">
  165.                 <div class="mr-1 bg-secondary" style="height:3px;width:100%"></div>
  166.                 <i class="fa-solid fa-plane"></i>
  167.                 <i class="fa-solid fa-island-tropical"></i>
  168.                 <i class="fa-solid fa-clouds"></i>
  169.             </div>
  170.            
  171.            
  172.             <!-- /// Design ///-->
  173.             <div class="row my-3 no-gutters">
  174.                
  175.                 <!--refsheet-->
  176.                 <div class="col-sm-11">
  177.                     <div class="card h-100 border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25);min-height:300px;
  178.                    background-image:url(https://images.unsplash.com/photo-1501426026826-31c667bdf23d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1936&q=80);
  179.                    background-size:cover;
  180.                    background-position:center;
  181.                    background-color:#f9f4f5">
  182.                     </div>
  183.                 </div>
  184.                
  185.                 <!--Link to full view-->
  186.                 <div class="col-sm-1">
  187.                     <div class="card bg-primary py-1 h-100 border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25);font-size:1.5em;text-shadow:3px 3px 0px rgba(0,0,0,0.25);text-align:center;">
  188.                        
  189.                         <a href="https://unsplash.com/photos/m82uh_vamhg" target="_blank" style="color:#ffffff" data-toggle="tooltip" title="full view">
  190.                             <i class="fa-solid fa-up-right-from-square"></i>
  191.                         </a>
  192.                        
  193.                     </div>
  194.                 </div>
  195.             </div>
  196.            
  197.            
  198.             <!--section header-->
  199.             <span style="font-weight:bold;font-size:2em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.1)">
  200.                 <i class="fa-solid fa-island-tropical"></i>
  201.                 Design
  202.                 <div class="bg-dark mt-0 mb-3" style="height:3px;width:100%"></div>
  203.             </span>
  204.            
  205.            
  206.             <p><i class="fa-solid fa-plane"></i> Placeholder pic from unsplash</p>
  207.            
  208.             <p><i class="fa-solid fa-plane"></i> Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  209.            
  210.             <p><i class="fa-solid fa-plane"></i> Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
  211.            
  212.             <!-- /// end Design ///-->
  213.            
  214.            
  215.             <!--divider-->
  216.             <div class="my-3 text-secondary d-flex flex-row align-items-center" style="font-size:25px;color:#ef6b89">
  217.                 <div class="mr-1 bg-secondary" style="height:3px;width:100%;"></div>
  218.                 <i class="fa-solid fa-plane"></i>
  219.                 <i class="fa-solid fa-island-tropical"></i>
  220.                 <i class="fa-solid fa-clouds"></i>
  221.             </div>
  222.            
  223.            
  224.             <!-- /// links /// -->
  225.            
  226.             <!--header-->
  227.             <span style="font-weight:bold;font-size:2em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.1)">
  228.                 <i class="fa-solid fa-island-tropical"></i>
  229.                 Links
  230.                 <div class="mt-0 mb-3 bg-dark" style="height:3px;width:100%"></div>
  231.             </span>
  232.            
  233.            
  234.             <!-- /// link 1 /// -->
  235.             <div class="row my-3">
  236.                
  237.                 <!--link image-->
  238.                 <div class="col-sm-4 mb-2 mb-sm-0">
  239.                     <div class="card border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25);min-height:200px;
  240.                    background-image:url(https://images.unsplash.com/photo-1546446587-f0af2037eaa1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80);
  241.                    background-size:cover;
  242.                    background-position:center;
  243.                    max-width:250px;
  244.                    margin-left:auto;margin-right:auto">
  245.                     </div>
  246.                 </div>
  247.                
  248.                 <!--blurb-->
  249.                 <div class="col-sm-8">
  250.                    
  251.                     <a href="#" style="font-weight:bold;font-size:1.5em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.1)">
  252.                         <i class="fa-solid fa-plane"></i>
  253.                         Character name
  254.                         <div class="mt-0 mb-3 bg-primary" style="height:3px;width:100%"></div>
  255.                     </a>
  256.                    
  257.                     <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros.</p>
  258.                    
  259.                 </div>
  260.                
  261.             </div>
  262.            
  263.             <!--divider-->
  264.             <div class="my-3 text-secondary d-flex flex-row align-items-center" style="font-size:25px">
  265.                 <div class="mr-1 bg-secondary" style="height:3px;width:100%"></div>
  266.                 <i class="fa-solid fa-plane"></i>
  267.                 <i class="fa-solid fa-island-tropical"></i>
  268.                 <i class="fa-solid fa-clouds"></i>
  269.             </div>
  270.            
  271.             <!-- /// end link 1 /// -->
  272.            
  273.            
  274.             <!-- /// link 2 /// -->
  275.             <div class="row my-3">
  276.                
  277.                 <!--link image-->
  278.                 <div class="col-sm-4 mb-2 mb-sm-0">
  279.                     <div class="card border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25);min-height:200px;
  280.                    background-image:url(https://images.unsplash.com/photo-1546446587-f0af2037eaa1?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80);
  281.                    background-size:cover;
  282.                    background-position:center;
  283.                    max-width:250px;
  284.                    margin-left:auto;margin-right:auto">
  285.                     </div>
  286.                 </div>
  287.                
  288.                 <!--blurb-->
  289.                 <div class="col-sm-8">
  290.                    
  291.                     <a href="#" style="font-weight:bold;font-size:1.5em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.1)">
  292.                         <i class="fa-solid fa-plane"></i>
  293.                         Character name
  294.                         <div class="mt-0 mb-3 bg-primary" style="height:3px;width:100%"></div>
  295.                     </a>
  296.                    
  297.                     <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis sollicitudin elit sed tellus blandit viverra sed eget odio. Donec accumsan tempor lacus, et venenatis elit feugiat non. Duis porta eros et velit blandit dapibus. Curabitur ac finibus eros.</p>
  298.                    
  299.                 </div>
  300.                
  301.             </div>
  302.            
  303.             <!--divider-->
  304.             <div class="my-3 text-secondary d-flex flex-row align-items-center" style="font-size:25px">
  305.                 <div class="mr-1 bg-secondary" style="height:3px;width:100%"></div>
  306.                 <i class="fa-solid fa-plane"></i>
  307.                 <i class="fa-solid fa-island-tropical"></i>
  308.                 <i class="fa-solid fa-clouds"></i>
  309.             </div>
  310.            
  311.             <!-- /// end link 2 /// -->
  312.            
  313.            
  314.             <!-- /// end links /// -->
  315.            
  316.         </div>
  317.         <!-- /// end info section /// -->
  318.        
  319.        
  320.         <!-- /// img + basic info /// -->
  321.         <div class="col-lg-3 col-xl-3 order-1 order-lg-3 mb-3 mb-lg-0">
  322.             <div style="position:sticky;top:20px;max-width:350px;
  323.                margin-left:auto;margin-right:auto">
  324.                
  325.                 <div class="card p-2 mb-3 bg-faded rounded-0" style="min-height:350px;box-shadow:3px 3px 0px rgba(0,0,0,0.25);
  326.                    background-image:url(#);
  327.                    background-size:contain;
  328.                    background-position:center;
  329.                    background-repeat:no-repeat;
  330.                    font-size:1.25em;
  331.                    text-shadow:3px 3px 0px rgba(0,0,0,0.25);
  332.                    text-align:right;
  333.                    ">
  334.                         <a href="#" target="_blank" data-toggle="tooltip" title="img - credit">
  335.                             <i class="fa-solid fa-plane-departure"></i>
  336.                         </a>
  337.                 </div>
  338.                
  339.                 <div class="card bg-primary p-2 border-0 rounded-0" style="box-shadow:3px 3px 0px rgba(0,0,0,0.25)">
  340.                     <div class="card-body text-white">
  341.                         <span style="font-weight:bold;font-size:1.5em;font-style:italic;font-family:arial,sans-serif;text-shadow:3px 3px 0px rgba(0,0,0,0.25)">
  342.                             <i class="fa-solid fa-clouds"></i>
  343.                             Basics</span>
  344.                         <hr class="my-0" style="border-color:#ffffff">
  345.                     </div>
  346.                 </div>
  347.                 <div class="card p-2 bg-faded rounded-0" style="min-height:100px;box-shadow:3px 3px 0px rgba(0,0,0,0.25);">
  348.                     <div class="d-flex flex-row align-items-baseline">
  349.                         <span style="font-weight:bold">Gender</span> <div class="mx-1 bg-primary" style="height:2px;width:100%"></div> text
  350.                     </div>
  351.                     <div class="d-flex flex-row align-items-baseline">
  352.                         <span style="font-weight:bold">Pro/noun</span> <div class="mx-1 bg-primary" style="height:2px;width:100%"></div> text
  353.                     </div>
  354.                     <div class="d-flex flex-row align-items-baseline">
  355.                         <span style="font-weight:bold">Species/Race</span> <div class="mx-1 bg-primary" style="height:2px;width:100%"></div> text
  356.                     </div>
  357.                     <div class="d-flex flex-row align-items-baseline">
  358.                         <span style="font-weight:bold">Birthday</span> <div class="mx-1 bg-primary" style="height:2px;width:100%"></div> text
  359.                     </div>
  360.                 </div>
  361.                
  362.                 <div class="card bg-primary p-2 mb-3 text-white border-0 rounded-0" style="min-height:50px;box-shadow:3px 3px 0px rgba(0,0,0,0.25);text-shadow:3px 3px 0px rgba(0,0,0,0.25)">
  363.                     <div class="card-body" style="text-align:center">
  364.                        
  365.                         <span style="font-weight:bold;font-style:italic;font-size:1.5em;font-family:arial,sans-serif">Blaze through the resort party! - IIDX Sound Team</span>
  366.                         <hr class="my-0" style="border-color:#ffffff">
  367.                        
  368.                         <div class="container" style="overflow:hidden;height:40px;font-size:1.5em;letter-spacing:3px">
  369.                             <iframe src="https://www.youtube-nocookie.com/embed/ehXAcvYX9mg?controls=0"
  370.                                frameborder="0"
  371.                                style="position:absolute;right:30px;top:-50px;width:200px;height:150px;z-index:1;opacity:0.001"></iframe>
  372.                                    
  373.                             <!--button decor-->
  374.                             <span><i class="fa-regular fa-shuffle"></i>
  375.                             <i class="fa-solid fa-backward-step"></i>
  376.                             <i class="fa-solid fa-play-pause"></i>
  377.                             <i class="fa-solid fa-forward-step"></i>
  378.                             <i class="fa-regular fa-repeat"></i></span>
  379.                            
  380.                         </div>
  381.                     </div>
  382.                 </div>
  383.                
  384.             </div>
  385.         </div>
  386.         <!-- /// end img + basic info /// -->
  387.        
  388.        
  389.         <!-- /// Sidebar 2 /// -->
  390.         <div class="col-1 d-none d-xl-block order-lg-4">
  391.             <div class="card h-100 p-2 mb-1 rounded-0 border-0 text-white" style="
  392.                background-image:url(https://images.unsplash.com/photo-1504321946642-8f661bf96ff0?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2070&q=80);
  393.                background-position:center;
  394.                background-size:cover;
  395.                background-attachment:fixed;
  396.                box-shadow:3px 3px 0px rgba(0,0,0,0.25) inset;
  397.                text-align:center;
  398.                font-size:40px;
  399.                text-shadow:3px 3px 0px rgba(0,0,0,0.25);
  400.                background-color:#f9f4f5">
  401.                
  402.                 <div style="position:sticky;top:20px">
  403.                     <i class="fa-solid fa-plane"></i>
  404.                     <i class="fa-solid fa-clouds"></i>
  405.                     <i class="fa-solid fa-island-tropical"></i>
  406.                     <div class="my-2" style="height:3px;width:100%;background-color:#ffffff;box-shadow:3px 3px 0px rgba(0,0,0,0.25)"></div>
  407.                 </div>
  408.                
  409.             </div>
  410.         </div>
  411.         <!-- /// end Sidebar 2 /// -->
  412.        
  413.        
  414.     </div>
  415.    
  416.    
  417.     <!--Credit. You may move it, but please do not delete/remove-->
  418.    
  419.     <p class="mt-1">HTML - <a href="https://toyhou.se/20231880"><i class='fa-solid fa-heart'></i> Jade-Everstone</a> // Layout - <a href="https://toyhou.se/Togo">Togo</a> // BG - <a href="https://unsplash.com/photos/S1XAf3JxOLI">Unsplash</a></p>
  420.    
  421. </div>
Advertisement
Add Comment
Please, Sign In to add comment