Advertisement
Jade-Everstone

11pm (CQ 2022 August - dark)

Aug 8th, 2022 (edited)
777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 37.70 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <!--Rules:
  3.  
  4. 11pm
  5. For the Coders Quarters August 2022 challenge
  6. Layout provided by Togo: https://toyhou.se/Togo
  7.  
  8. You may
  9. -frankenstein with other codes (as long as the creator of said code allows it)
  10. -edit/change as much as you need (example: making character codes into user codes, vice-versa)
  11.  
  12. You may not
  13. -Redistribute, resell, and/or claim its yours
  14. -Remove credit (you're allowed to move & edit it though, just keep it visible)
  15.  
  16. Misc Notes:
  17. -When editing, remember to turn WYSIWYG off! My codes may break otherwise
  18. -Some basic html knowledge is recommended for editing
  19.  
  20. Default Colors:
  21. -text: text-white
  22. -backgrounds: rgba(19, 17, 27,0.90)
  23. -tabs & likes/dislikes bg: #1d1a2a
  24. -borders, headers, 'taskbar': #000000
  25. -dividers, links, accents: #698bc7
  26.  
  27.  
  28. Change the colors: Ctrl+f and search for the color you want to change.
  29.  
  30. -->
  31.  
  32. <div class="container-fluid" style="max-width:1250px">
  33.    
  34.     <!--background / 'wallpaper'-->
  35.     <div class="card rounded-0" style="
  36.        background-image:url(https://images.unsplash.com/photo-1503389152951-9f343605f61e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2099&q=80);
  37.        background-size:cover;
  38.        background-position:bottom;
  39.        border-color:#000000;
  40.        box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  41.        
  42.     <!--Windows-->  
  43.    
  44.     <div class="container p-3" style="max-width:1200px">
  45.         <div class="row">
  46.            
  47.             <!--player & basic info-->
  48.            
  49.             <div class="col-12 col-xl-3 order-2 order-xl-1">
  50.                 <div class="row">
  51.                    
  52.                     <!--both these sections expand for better mobile readability. Though for the best look on desktop, best to keep things short/around the size they are now-->
  53.                    
  54.                     <!--music player-->
  55.                     <div class="col-12 col-sm-6 col-xl-12 order-2 order-xl-1">
  56.                     <div class="card text-white rounded-0 mb-3" style="min-height:230px;border-color:#000000;max-width:270px;
  57.                        margin-left:auto;margin-right:auto;background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  58.                        
  59.                         <!--header-->
  60.                         <div class="card border-0 rounded-0 text-white w-100 px-1" style="height:25px;background-color:#000000">
  61.                             <div class="card-body d-flex my-auto">
  62.                                 <span class="my-auto">now playing...</span>
  63.                                 <span class="ml-auto my-auto">
  64.                                     <i class="fa-light fa-circle"></i>
  65.                                     <i class="fa-solid fa-circle"></i>
  66.                                 </span>
  67.                             </div>
  68.                         </div>
  69.                        
  70.                         <div class="card-body p-2" style="margin-top:auto;margin-bottom:auto;text-align:center">
  71.                             <!--album image
  72.                            
  73.                            (I made it the bg image since the track featured in this layout doesn't have an album release. at least that I know of)-->
  74.                             <div class="card bg-transparent border-0 rounded-0 mt-2" style="min-height:100px;width:100px;margin-left:auto;margin-right:auto;
  75.                            background-image:url(https://images.unsplash.com/photo-1503389152951-9f343605f61e?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2099&q=80);
  76.                            background-size:cover"></div>
  77.                            
  78.                             <!--song title-->
  79.                             <span style="letter-spacing:1px">among the stars - Cliff Martinez</span>
  80.                             <hr class="my-1" style="border-color:#698bc7">
  81.                             <div class="card bg-transparent border-0 rounded-0" style="font-size:1.5em;letter-spacing:7px;overflow:hidden">
  82.                                
  83.                                
  84.                                 <!-- HOW TO CHANGE THE LINK/SONG
  85.                                    - Go to youtube and find the song you want to use
  86.                                    - the page link has a string of random letters & numbers at the end of it.
  87.                                        (eg: https://www.youtube.com/watch?v= [here] )
  88.                                    - copy that string of letters and paste it between embed/ and ?controls-0 in the embed link
  89.                                        (eg: src="https://www.youtube-nocookie.com/embed/ [here] ?controls=0" )
  90.                                -->
  91.                                
  92.                                 <iframe src="https://www.youtube-nocookie.com/embed/oqTFULNFLGI?controls=0"
  93.                                    frameborder="0"
  94.                                    style="position:absolute;right:px;top:-80px;width:250px;height:200px;z-index:1;opacity:0.001"></iframe>
  95.                                
  96.                                 <!--button decor-->
  97.                                 <span><i class="fa-thin fa-shuffle"></i>
  98.                                 <i class="fa-solid fa-backward-step"></i>
  99.                                 <i class="fa-solid fa-play-pause"></i>
  100.                                 <i class="fa-solid fa-forward-step"></i>
  101.                                 <i class="fa-thin fa-repeat"></i></span>
  102.                             </div>
  103.                            
  104.                         </div>
  105.                        
  106.                     </div>
  107.                     </div>
  108.                     <!--end music player-->
  109.                    
  110.                     <!--neofetch / basic info-->
  111.                     <div class="col-12 col-sm-6 col-xl-12 order-1 order-xl-2">
  112.                     <div class="card text-white rounded-0 mb-3 mb-sm-0" style="min-height:400px;border-color:#000000;max-width:270px;margin-left:auto;margin-right:auto;background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  113.                        
  114.                         <!--header-->
  115.                         <div class="card border-0 rounded-0 text-white w-100 px-1" style="height:25px;background-color:#000000">
  116.                             <div class="card-body d-flex my-auto">
  117.                                 <span class="my-auto">$ neofetch</span>
  118.                                 <span class="ml-auto my-auto">
  119.                                     <i class="fa-light fa-circle"></i>
  120.                                     <i class="fa-solid fa-circle"></i>
  121.                                 </span>
  122.                             </div>
  123.                         </div>
  124.                        
  125.                         <!--character thumbnail-->
  126.                         <div class="card bg-transparent border-0 rounded-0 mt-2" style="min-height:150px;width:150px;margin-left:auto;margin-right:auto;
  127.                            background-image:url(#);
  128.                            background-size:cover"></div>
  129.                        
  130.                         <!--basic info-->
  131.                         <div class="card-body p-2">
  132.                            
  133.                             <span style="color:#698bc7">Name</span> @ <span style="color:#698bc7">ToyhouseOS</span>
  134.                            
  135.                             <hr class="my-1" style="border-color:#698bc7">
  136.                            
  137.                             <div class="badge rounded-0" style="background-color:#698bc7;">gender</div> text<br>
  138.                             <div class="badge rounded-0" style="background-color:#698bc7;">Pronouns</div> pro/noun<br>
  139.                             <div class="badge rounded-0" style="background-color:#698bc7;">Species/race</div> text<br>
  140.                             <div class="badge rounded-0" style="background-color:#698bc7;">Age</div> text<br>
  141.                             <div class="badge rounded-0" style="background-color:#698bc7;">Birthday</div> text<br>
  142.                             <div class="badge rounded-0" style="background-color:#698bc7;">Job/role</div> text<br>
  143.                            
  144.                             <!--colors section-->
  145.                             <p style="text-align:center;font-size:1.5em">
  146.                                 <i class="fa-solid fa-rhombus" style="color:#698bc7"></i>
  147.                                 <i class="fa-solid fa-rhombus" style="color:#b9e7ff"></i>
  148.                                 <i class="fa-solid fa-rhombus" style="color:#ffffff"></i>
  149.                                 <i class="fa-solid fa-rhombus" style="color:#7965b8"></i>
  150.                                 <i class="fa-solid fa-rhombus" style="color:#5d1ba8"></i>
  151.                             </p>
  152.                         </div>
  153.                     </div>
  154.                     </div>
  155.                     <!--end neofetch / basic info-->
  156.                    
  157.                 </div>
  158.             </div>
  159.            
  160.             <!--end player & basic info-->
  161.            
  162.            
  163.             <!--main info and images section-->
  164.            
  165.             <div class="col-12 col-xl-9 order-1 order-xl-2">
  166.                
  167.                 <!--character name header-->
  168.                
  169.                 <div class="card text-white rounded-0 mb-3" style="min-height:90px;border-color:#000000;
  170.                    background-color:#000000;box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  171.                     <div class="card-body d-flex flex-wrap my-auto p-2">
  172.                         <span style="font-size:3em">
  173.                             Character name
  174.                         </span>
  175.                        
  176.                         <span class="ml-auto my-auto" style="font-size:1.25em">
  177.                             nickname, title, etc.
  178.                         </span>
  179.                     </div>
  180.                 </div>
  181.                
  182.                 <!--end character name header-->
  183.                
  184.                
  185.                 <!--main info + pics & quote-->
  186.                
  187.                
  188.                 <div class="row mb-3 mb-xl-0">
  189.                    
  190.                     <!--main info section-->
  191.                    
  192.                     <div class="col-12 col-lg-8 order-2 order-lg-1">
  193.                        
  194.                         <!--breif intro-->
  195.                        
  196.                         <div class="card text-white rounded-0 mb-3" style="min-height:140px;border-color:#000000;
  197.                            background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  198.                             <div class="card-body p-2" style="margin-top:auto;margin-bottom:auto">
  199.                                 <p>This section can expand but I suggest keeping it breif for the best look.</p>
  200.                                 <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.</p>
  201.                             </div>
  202.                         </div>
  203.                        
  204.                         <!--end breif intro-->
  205.                        
  206.                        
  207.                         <!--info window-->
  208.                        
  209.                         <div class="card text-white rounded-0 mb-3 mb-lg-0" style="height:384px;border-color:#000000;
  210.                            background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  211.                            
  212.                             <!--navs-->
  213.                             <div class="card-header p-1" style="background-color:#000000;border-width:0px">
  214.                                 <ul class="nav nav-pills d-flex flex-wrap">
  215.                                    
  216.                                     <li class="nav-item">
  217.                                         <a class="nav-link text-white active m-1" style="background-color:#1d1a2a;border-radius:0px" data-toggle="tab" href="#trivia">
  218.                                             Trivia <i class="fa-solid fa-xmark ml-3 faded"></i>
  219.                                             </a>
  220.                                     </li>
  221.                                    
  222.                                     <li class="nav-item">
  223.                                         <a class="nav-link text-white m-1" style="background-color:#1d1a2a;border-radius:0px" data-toggle="tab" href="#summary">
  224.                                             Summary <i class="fa-solid fa-xmark ml-3 faded"></i>
  225.                                             </a>
  226.                                     </li>
  227.                                    
  228.                                     <li class="nav-item">
  229.                                         <a class="nav-link text-white m-1" style="background-color:#1d1a2a;border-radius:0px" data-toggle="tab" href="#links">
  230.                                             Links <i class="fa-solid fa-xmark ml-3 faded"></i>
  231.                                             </a>
  232.                                     </li>
  233.                                    
  234.                                     <li class="nav-item">
  235.                                         <a class="nav-link text-white m-1"  style="background-color:#1d1a2a;border-radius:0px"data-toggle="tab" href="#design"> Design <i class="fa-solid fa-xmark ml-3 faded"></i>
  236.                                         </a>
  237.                                     </li>
  238.                                    
  239.                                 </ul>
  240.                             </div>
  241.                             <!--end navs-->
  242.                            
  243.                            
  244.                             <!--main info window-->
  245.                             <div class="card-body table-responsive p-2">
  246.                                 <div class="tab-content">
  247.                                    
  248.                                     <!--trivia-->
  249.                                     <div class="tab-pane container active" id="trivia">
  250.                                         <div class="row">
  251.                                            
  252.                                             <!--main text-->
  253.                                             <div class="col-12 col-md-7 mb-2 mb-lg-0">
  254.                                                 <span style="font-size:1.5em">Trivia</span>
  255.                                                 <hr class="my-1" style="border-color:#698bc7">
  256.                                                
  257.                                                 <p><i class="fa-regular fa-chevron-right"></i>
  258.                                                 Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  259.                                                
  260.                                                 <p><i class="fa-regular fa-chevron-right"></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>
  261.                                                
  262.                                                 <p><i class="fa-regular fa-chevron-right"></i> It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  263.                                                
  264.                                                 <p><i class="fa-regular fa-chevron-right"></i> It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  265.                                                
  266.                                             </div>
  267.                                            
  268.                                            
  269.                                             <!--likes/dislikes section-->
  270.                                             <div class="col-12 col-md-5">
  271.                                                 <div class="card rounded-0" style="position:sticky;top:10px;border-color:#698bc7;background-color:#1d1a2a;">
  272.                                                     <div class="card-body p-2">
  273.                                                        
  274.                                                         <span style="font-size:1.25em;letter-spacing:1px">Likes</span><br>
  275.                                                         <i class="fa-regular fa-chevron-right"></i> like <br>
  276.                                                         <i class="fa-regular fa-chevron-right"></i> like <br>
  277.                                                         <i class="fa-regular fa-chevron-right"></i> like <br>
  278.                                                        
  279.                                                         <hr class="my-1" style="border-color:#698bc7">
  280.                                                        
  281.                                                         <span style="font-size:1.25em;letter-spacing:1px">Dislikes</span><br>
  282.                                                         <i class="fa-regular fa-chevron-right"></i> dislike <br>
  283.                                                         <i class="fa-regular fa-chevron-right"></i> dislike <br>
  284.                                                         <i class="fa-regular fa-chevron-right"></i> dislike <br>
  285.                                                        
  286.                                                     </div>
  287.                                                 </div>
  288.                                             </div>
  289.                                            
  290.                                         </div>
  291.                                     </div>
  292.                                     <!--end trivia-->
  293.                                    
  294.                                    
  295.                                     <!--summary-->
  296.                                     <div class="tab-pane container fade" id="summary">
  297.                                        
  298.                                         <span style="font-size:1.5em">Summary</span>
  299.                                         <hr class="my-1" style="border-color:#698bc7">
  300.                                         <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>
  301.                                        
  302.                                         <span style="font-size:1.25em">subheader</span>
  303.                                         <hr class="my-1" style="border-color:#698bc7">
  304.                                         <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>
  305.                                        
  306.                                     </div>
  307.                                     <!--end summary-->
  308.                                    
  309.                                    
  310.                                     <!--links-->
  311.                                     <div class="tab-pane container fade" id="links">
  312.                                         <div class="row">
  313.                                            
  314.                                             <!--link 1-->
  315.                                             <div class="col-12 col-md-4">
  316.                                                 <div class="card bg-transparent rounded-0 border-0" style="position:sticky;top:10px;border-color:#698bc7">
  317.                                                     <div class="card-body">
  318.                                                    
  319.                                                     <!--image-->
  320.                                                     <div class="card bg-transparent border-0 rounded-0 mt-2" style="min-height:150px;width:150px;margin-left:auto;margin-right:auto;
  321.                                                        background-image:url(#);
  322.                                                        background-size:cover"></div>
  323.                                                    
  324.                                                     </div>
  325.                                                     <a href="#" style="font-size:1.25em;letter-spacing:1px;color:#698bc7">Character name</a>
  326.                                                     <br>
  327.                                                     <span>Relationship status</span>
  328.                                                 </div>
  329.                                                
  330.                                             </div>
  331.                                             <!--description-->
  332.                                             <div class="col-12 col-md-8 mb-3">
  333.                                                 <hr class="my-1 d-block d-lg-none" style="border-color:#698bc7">
  334.                                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  335.                                                 <p>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>
  336.                                                 <p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  337.                                             </div>
  338.                                            
  339.                                            
  340.                                             <!--link 2-->
  341.                                             <div class="col-12 col-md-4">
  342.                                                 <div class="card bg-transparent rounded-0 border-0" style="position:sticky;top:10px;border-color:#698bc7">
  343.                                                     <div class="card-body">
  344.                                                    
  345.                                                     <!--image-->
  346.                                                     <div class="card bg-transparent border-0 rounded-0 mt-2" style="min-height:150px;width:150px;margin-left:auto;margin-right:auto;
  347.                                                        background-image:url(#);
  348.                                                        background-size:cover"></div>
  349.                                                    
  350.                                                     </div>
  351.                                                     <a href="#" style="font-size:1.25em;letter-spacing:1px;color:#698bc7">Character name</a>
  352.                                                     <br>
  353.                                                     <span>Relationship status</span>
  354.                                                 </div>
  355.                                                
  356.                                             </div>
  357.                                             <!--description-->
  358.                                             <div class="col-12 col-md-8 mb-3">
  359.                                                 <hr class="my-1" style="border-color:#698bc7">
  360.                                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  361.                                                 <p>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>
  362.                                                 <p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  363.                                             </div>
  364.                                            
  365.                                            
  366.                                             <!--link 3-->
  367.                                             <div class="col-12 col-md-4">
  368.                                                 <div class="card bg-transparent rounded-0 border-0" style="position:sticky;top:10px;border-color:#698bc7">
  369.                                                     <div class="card-body">
  370.                                                    
  371.                                                     <!--image-->
  372.                                                     <div class="card bg-transparent border-0 rounded-0 mt-2" style="min-height:150px;width:150px;margin-left:auto;margin-right:auto;
  373.                                                        background-image:url(#);
  374.                                                        background-size:cover"></div>
  375.                                                    
  376.                                                     </div>
  377.                                                     <a href="#" style="font-size:1.25em;letter-spacing:1px;color:#698bc7">Character name</a>
  378.                                                     <br>
  379.                                                     <span>Relationship status</span>
  380.                                                 </div>
  381.                                                
  382.                                             </div>
  383.                                             <!--description-->
  384.                                             <div class="col-12 col-md-8 mb-2">
  385.                                                 <hr class="my-1" style="border-color:#698bc7">
  386.                                                 <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  387.                                                 <p>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>
  388.                                                 <p>It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  389.                                             </div>
  390.                                            
  391.                                         </div>
  392.                                     </div>
  393.                                     <!--end links-->
  394.                                    
  395.                                    
  396.                                     <!--design-->
  397.                                     <div class="tab-pane container fade" id="design">
  398.                                         <div class="row">
  399.                                            
  400.                                             <!--image-->
  401.                                             <div class="col-12 col-md-7">
  402.                                                 <div class="card bg-transparent rounded-0 border-0 mb-3" style="position:sticky;top:10px;border-color:#000000">
  403.                                                     <div class="card-body">
  404.                                                         <img src="#" class="img-fluid">
  405.                                                     </div>
  406.                                                    
  407.                                                     <!--credit and/or full image link-->
  408.                                                     <span>image / <a href="#" style="color:#698bc7">artistcredit.png</a></span>
  409.                                                
  410.                                                 </div>
  411.                                                
  412.                                             </div>
  413.                                            
  414.                                             <!--design notes-->
  415.                                             <div class="col-12 col-md-5 mb-2 mb-lg-0">
  416.                                                
  417.                                                 <span style="font-size:1.5em">Design</span>
  418.                                                 <hr class="my-1" style="border-color:#698bc7">
  419.                                                
  420.                                                 <!--basics-->
  421.                                                 <div class="badge rounded-0" style="background-color:#698bc7;">Trait</div>
  422.                                                 text<br>
  423.                                                 <div class="badge rounded-0" style="background-color:#698bc7;">Trait</div>
  424.                                                 text<br>
  425.                                                 <div class="badge rounded-0" style="background-color:#698bc7;">Trait</div>
  426.                                                 text<br>
  427.                                                
  428.                                                 <!--main notes-->
  429.                                                 <hr class="my-1" style="border-color:#698bc7">
  430.                                                 <p><i class="fa-regular fa-chevron-right"></i>
  431.                                                 Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
  432.                                                
  433.                                                 <p><i class="fa-regular fa-chevron-right"></i>
  434.                                                 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>
  435.                                                
  436.                                                 <p><i class="fa-regular fa-chevron-right"></i>
  437.                                                 It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. </p>
  438.                                                
  439.                                             </div>
  440.                                            
  441.                                         </div>
  442.                                     </div>
  443.                                     <!--end design-->
  444.                                    
  445.                                 </div>
  446.                             </div>
  447.                             <!--endmain info window-->
  448.                            
  449.                            
  450.                         </div>
  451.                        
  452.                         <!--end info window-->
  453.                        
  454.                     </div>
  455.                    
  456.                     <!--end main info section-->
  457.                    
  458.                    
  459.                     <!--pics & quote-->
  460.                    
  461.                     <div class="col-12 col-lg-4 order-1 order-lg-2">
  462.                         <div class="row">
  463.                            
  464.                             <!--image window 1-->
  465.                             <div class="col-12 col-sm-6 col-lg-12">
  466.                             <div class="card rounded-0 mb-3 w-100" style="height:179px;border-color:#000000;max-width:270px;
  467.                            margin-left:auto;margin-right:auto;background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  468.                                
  469.                                 <div class="card border-0 rounded-0 text-white w-100 px-1" style="height:25px;background-color:#000000">
  470.                                     <div class="card-body d-flex">
  471.                                        
  472.                                         <!--credit-->
  473.                                         <span class="my-auto">image / <a href="#" style="color:#698bc7">artistcredit.png</a></span>
  474.                                         <span class="ml-auto my-auto">
  475.                                             <i class="fa-light fa-circle"></i>
  476.                                             <i class="fa-solid fa-circle"></i>
  477.                                            
  478.                                         </span>
  479.                                     </div>
  480.                                 </div>
  481.                                
  482.                                 <!--image-->
  483.                                 <div class="w-100 h-100" style="
  484.                                background-image:url(#);
  485.                                background-size:400px;
  486.                                background-position:center"></div>
  487.                                
  488.                             </div>
  489.                             </div>
  490.                             <!--end image window 1-->
  491.                            
  492.                            
  493.                             <!--quote-->
  494.                             <div class="col-12 col-sm-6 col-lg-12 d-block d-sm-none d-lg-block">
  495.                             <div class="card text-white rounded-0 mb-3 w-100" style="min-height:150px;border-color:#000000;max-width:270px;margin-left:auto;margin-right:auto;background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  496.                                 <div class="card-body p-2" style="margin-top:auto;margin-bottom:auto;text-align:center;font-size:1.5em">
  497.                                    
  498.                                     "character quote. <br> Section can expand but it looks best when short"
  499.                                    
  500.                                 </div>
  501.                             </div>
  502.                             </div>
  503.                             <!--end quote-->
  504.                            
  505.                            
  506.                             <!--image window 2-->
  507.                             <div class="col-12 col-sm-6 col-lg-12">
  508.                             <div class="card rounded-0 mb-3 mb-lg-0 w-100" style="height:179px;border-color:#000000;max-width:270px;margin-left:auto;margin-right:auto;background-color:rgba(19, 17, 27,0.90);box-shadow:3px 3px 5px rgba(0,0,0,0.3)">
  509.                                
  510.                                 <div class="card border-0 rounded-0 text-white w-100 px-1" style="height:25px;border-width:1px;background-color:#000000">
  511.                                 <div class="card-body d-flex">
  512.                                    
  513.                                         <!--credit-->
  514.                                         <span class="my-auto">image / <a href="#" style="color:#698bc7">artistcredit.png</a></span>
  515.                                         <span class="ml-auto my-auto">
  516.                                             <i class="fa-light fa-circle"></i>
  517.                                             <i class="fa-solid fa-circle"></i>
  518.                                         </span>
  519.                                        
  520.                                     </div>
  521.                                 </div>
  522.                                
  523.                                 <!--image-->
  524.                                 <div class="w-100 h-100" style="
  525.                                background-image:url(#);
  526.                                background-size:600px;
  527.                                background-position:center"></div>
  528.                             </div>
  529.                             </div>
  530.                             <!--end image window 2-->
  531.                            
  532.                         </div>
  533.                     </div>
  534.                    
  535.                     <!--end pics & quote-->
  536.                    
  537.                 </div>
  538.                
  539.                
  540.                 <!--end main info + pics & quote-->
  541.                
  542.             </div>
  543.            
  544.             <!--end main info and images section-->
  545.            
  546.         </div>
  547.     </div>
  548.    
  549.     <!--End Windows-->  
  550.    
  551.    
  552.     <!--taskbar-->
  553.    
  554.     <div class="row" style="height:30px">
  555.        
  556.         <!--left section-->
  557.         <div class="col-12 col-lg-8">
  558.             <div class="card border-0 rounded-0 text-white px-3 w-100 h-100" style="background-color:#000000">
  559.                 <span style="margin-top:auto;margin-bottom:auto">
  560.                    
  561.                     <i class="fa-solid fa-house-chimney-blank" style="color:#698bc7"></i>
  562.                     <span class="faded">|</span>
  563.                    
  564.                     <!--Credit. You may move it, but please do not delete/remove-->
  565.                     HTML - <a href="https://toyhou.se/17430239.-f2u-11pm-am" style="color:#698bc7">Jade-Everstone</a>
  566.                     <span class="faded">|</span>
  567.                     Layout - <a href="https://toyhou.se/Togo" style="color:#698bc7">Togo</a>
  568.                     <span class="faded">|</span>
  569.                     BG - <a href="https://unsplash.com/photos/cgEbku0EbOg" style="color:#698bc7">Unsplash</a>
  570.                    
  571.                    
  572.                 </span>
  573.             </div>
  574.         </div>
  575.         <!--end left section-->
  576.        
  577.        
  578.         <!--right section-->
  579.         <div class="col-12 col-lg-4">
  580.             <div class="card border-0 rounded-0 text-white px-3 w-100 h-100" style="background-color:#000000">
  581.                 <span style="margin-top:auto;margin-bottom:auto;text-align:right">
  582.                    
  583.                     11:00pm
  584.                     <span class="faded">|</span>
  585.                     01 Jan 20XX
  586.                     <span class="faded">|</span>
  587.                     <i class="fa-solid fa-battery-three-quarters"></i> 78%
  588.                    
  589.                 </span>
  590.             </div>
  591.         </div>
  592.         <!--end right section-->
  593.        
  594.     </div>
  595.    
  596.     <!--end taskbar-->
  597.    
  598.    
  599.     </div>
  600.    
  601. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement