Kawaii-Lau

Golden Savior

Apr 30th, 2020
528
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 29.27 KB | None | 0 0
  1. <style>
  2.  
  3.  
  4. /*  
  5.  
  6. ❁ ≖≖✿❁  Hello!
  7.      Thank you for using my code!
  8.                                     ✿❁ ≖≖ ❁ *
  9. Rules to Follow:
  10.  
  11. ✶ Do not EVER delete or remove the credits of the coder or claim this code as your own.
  12. ✶ Do not redistribute this code, no matter how much you edited it!
  13. ✶ If you need any help in fixing codes, contact me on Discord (Kawaii-lau#6316). Major changes in code is not accepted.
  14. ✶ If you like to share this code, send to your friends the link of my blog, kawaii-lau.tumblr.com , and support me!
  15.  
  16. If you like a custom code, check out my blog to see if commissions are open!
  17.  
  18. XOXO, Kawaii-Lau.
  19.  
  20. ❁ ≖≖✿❁
  21.         2020 © Coding by Kawaii-Lau
  22.                                     ✿❁ ≖≖ ❁ * */
  23.  
  24.  
  25.  
  26.     /* ❁ ≖≖✿❁ SCROLLBAR CSS ✿❁ ≖≖ ❁ */
  27.  
  28. ::-webkit-scrollbar {
  29.         width:7px;
  30.         height:6px;
  31.         background:transparent;
  32.         padding:10px;
  33. }
  34.  
  35. ::-webkit-scrollbar-thumb {
  36.         width:4px;
  37.         background:#DFDC91;
  38. }
  39.  
  40.  
  41.     /* ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ */
  42.  
  43.  
  44.     /* ❁ ≖≖✿❁ GENERAL CSS CHANGE ✿❁ ≖≖ ❁ */
  45.  
  46. :root {
  47.     --background:black;
  48.     --boxes:linear-gradient(to bottom, #FCFCff, #e6dbc7);
  49.     --main-font: 'Acme', sans-serif;
  50.     --outer-font-color:white;
  51.     --main-font-color:black;
  52.     --border-1:#DEDA60;
  53.     --border-2:#aa8d3f;
  54.     --relation-color:#D7CC28;
  55. }
  56.  
  57.         /* ❁ ≖≖✿❁ MAIN CODE CSS ✿❁ ≖≖ ❁ */
  58.  
  59. .background {
  60.         background: var(--background) url(https://thumbs.gfycat.com/BriefIgnorantBlackbuck-size_restricted.gif) center;
  61.         background-size:20% 20%;
  62.         padding:80px 40px;
  63.         width:1000px
  64. }
  65.  
  66. .main-box-hide {
  67.     overflow:hidden;
  68.     border-radius:20px;
  69.     width:920px;
  70.     height:550px;
  71.     margin-left:auto; margin-right:auto;
  72.     border:2px outset var(--border-1);
  73. }   /* Hides the main-box from overflowing */
  74.  
  75. .main-box {
  76.         background:transparent;
  77.         border-radius:20px;
  78.         overflow:auto;
  79.         color:var(--outer-font-color);
  80.         height:550px;
  81. }
  82.  
  83.         /* ❁ ≖≖✿❁ BOXES CSS ≖≖✿❁ ≖≖ ❁ */
  84.  
  85. .box-css {
  86.         background:var(--boxes);
  87.         color:var(--main-font-color);
  88.         border-radius:20px;
  89.         margin:5px;
  90.         font-family:var(--main-font);
  91.         overflow:hidden;
  92.        
  93. }
  94.  
  95. .box-padding {
  96.         overflow:auto;
  97.         padding:10px;
  98. }
  99.  
  100. .box-header {
  101.         font-family:'Abril Fatface';
  102.         font-size:24px;
  103.         text-align:center;
  104.         letter-spacing:1px;
  105.         text-shadow:0px 1px white;
  106.         margin:0px;
  107. }
  108.  
  109. /* ❁ ≖≖✿❁
  110.         TITLE CSS
  111.             "I can take you to Paradise" to Basic Info
  112.                                             ≖≖✿❁ ≖≖ ❁ */
  113.  
  114. .title {
  115.     width:180px;
  116.     margin-top:100px;
  117.     margin-right:20px; margin-left:20px;
  118.     position:relative;
  119.     z-index:5;
  120.  
  121.     color:rgba(255, 255, 255, 0.9)
  122. }
  123.  
  124.  
  125.  
  126.     /*The individual words  */
  127.     .names {
  128.         text-align:right;
  129.         font-family:'Abril Fatface';
  130.         font-size:44px;
  131.         font-style:italic;
  132.         font-weight:900;
  133.         letter-spacing:-1px
  134.     }
  135.  
  136.     .names p {
  137.         margin:-10px; transition:1s ease;
  138.     }
  139.  
  140.     .names p:hover {
  141.     letter-spacing:2px;
  142.     cursor: default;
  143. }
  144.  
  145. /* ❁ ≖≖✿❁
  146.         BASIC INFORMATION CSS
  147.                             ≖≖✿❁ ≖≖ ❁ */
  148.  
  149. .basic {
  150.         width:220px;
  151.         height:250px;
  152.         margin-left:-20px;
  153. }
  154.  
  155.     .basic table {
  156.         color:var(--outer-font-color);
  157.         border-spacing: 0px 5px;
  158.     }
  159.  
  160.     .basic table td {
  161.         padding:0px 5px;
  162.         width:100px;
  163.        
  164.     }
  165.  
  166.     .basic table td:first-child {
  167.         border-right:4px solid var(--border-1);
  168.         text-align:right;
  169.         font-size:18px;
  170.         text-transform:uppercase;
  171.         font-family:'Abril Fatface';
  172.         padding-right:10px
  173.     }
  174.  
  175. /* ❁ ≖≖✿❁
  176.         MAIN HEADER PICTURE CSS
  177.                             ≖≖✿❁ ≖≖ ❁ */
  178.  
  179. .profile-picture {
  180.         width:300px;
  181.         height:500px;
  182.         padding:0px;
  183. }
  184.  
  185. .pfp img {
  186.         width:100%;
  187.         height:400px
  188. }
  189.  
  190. /* ❁ ≖≖✿❁
  191.         QUOTES CSS
  192.             "Do you believe in the afterworld?"
  193.                                         ≖≖✿❁ ≖≖ ❁ */
  194.  
  195. .quote {
  196.         margin-top:10px;
  197.  
  198.         color:#807D46 ;
  199.         font-style:italic;
  200.         text-align:center;
  201.         font-family:'Niconne';
  202.         font-size:36px;
  203.         line-height:35px;
  204. }
  205.  
  206.     .quote::before {content: ' ❝ '; margin-left:-10px}
  207.     .quote::after {content: ' ❞ '; margin-left:}
  208.  
  209. /* ❁ ≖≖✿❁
  210.             GENERAL INFORMATION
  211.                 CONTENT CSS
  212.                                 ≖≖✿❁ ≖≖ ❁ */
  213.  
  214. .info {
  215.         width:240px;
  216.         height:160px;
  217.         padding:0px 10px;
  218.         overflow:auto;
  219. }
  220.  
  221.     .info table {
  222.         color:var(--main-font-color);
  223.         border-spacing: 0px 5px;
  224.         width:100%;
  225.         margin-left:auto; margin-right:auto;
  226.     }
  227.  
  228.     .info table td {
  229.         padding:0px 5px;
  230.     }
  231.  
  232.     .info table td:first-child {
  233.         border-right:4px double black;
  234.         text-align:right;
  235.         padding-right:10px
  236.     }
  237.  
  238. /* ❁ ≖≖✿❁
  239.             GENERAL SMALL PICTURES
  240.                 WITH BORDERS CSS
  241.                                 ≖≖✿❁ ≖≖ ❁ */
  242.  
  243. .single-pic {
  244.             width:100px;
  245.             height:100px;
  246.             border-radius:20px;
  247.             padding:5px;
  248.             border:2px double var(--border-2);
  249.             margin:10px 5px 0px 5px;
  250.         }
  251.  
  252.         .single-pic img {
  253.                 width:100%;
  254.                 border-radius:20px;
  255.         }
  256.    
  257. /* ❁ ≖≖✿❁
  258.             APPEARANCE and RELATION
  259.                     BOX CSS
  260.                                 ≖≖✿❁ ≖≖ ❁ */
  261.  
  262. .appearance {
  263.         width:400px;
  264.         height:160px
  265.     }
  266.    
  267.  
  268. .relation {
  269.     margin:10px 0px
  270. }
  271.  
  272. /* ❁ ≖≖✿❁
  273.             PLAYLIST  BOX CSS
  274.                                 ≖≖✿❁ ≖≖ ❁ */
  275.  
  276.  
  277. .song-cover {
  278.    
  279.         width:75px; height:75px;
  280.         border-radius:20px;
  281.         border:2px double var(--border-2);
  282.         margin:10px 5px 5px 5px;
  283. }
  284.  
  285. .song-cover img {
  286.             width:100%;
  287.             border-radius:20px;
  288.         }
  289. .song-title {
  290.         margin:5px;
  291.         width:150px;
  292. }
  293.  
  294. .song-title p:first-child {
  295.         margin:0px;
  296.         font-family:'Abril Fatface';
  297.         color:var(--relation-color);
  298.         font-size:18px;
  299. }
  300.  
  301.    
  302.     /* ❁ ≖≖✿❁
  303.             DIVIDER (CHECKERS) CSS
  304.                                 ≖≖✿❁ ≖≖ ❁ */
  305.  
  306. .divider {
  307.         height:15px; width:97%;    
  308.         background: url(https://images1.pixlis.com/background-image-checkers-chequered-checkered-squares-seamless-tileable-half-spanish-white-luxor-gold-236f97.png) center;
  309.         background-size:70%;
  310.         margin:10px auto;
  311.         border-radius:4px;
  312. }
  313.  
  314. /* ❁ ≖≖✿❁
  315.                     FLEXBOX AND CREDITS CSS
  316.         (DO NOT REMOVE CREDITS EVER!)
  317.                                 ≖≖✿❁ ≖≖ ❁ */
  318.  
  319. .flexbox {display:flex} .row {flex-direction:row} .col {flex-direction:column}
  320.  
  321. .credits {
  322.         margin-top:-12px;
  323.         width:920px;
  324.         margin-left:auto; margin-right:auto;
  325.         font-family:var(--main-font);
  326.         color:white;
  327.         text-indent:60px;
  328. }
  329.  
  330. .credits a {
  331.         color:#E9A318;
  332.         text-decoration:none;
  333.         transition:1s ease;
  334. }
  335.  
  336. .credits a:hover {
  337.         letter-spacing:2px;
  338.         color:#E9C318;
  339.         text-shadow:0px 0px 5px #E9E67E;
  340. }
  341.  
  342. </style>
  343.  
  344. <!-- CUSTOM FONTS -->
  345. <link href="https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Acme&family=Niconne&display=swap" rel="stylesheet">
  346.  
  347. <link href="https://codepen.io/Kawaii-Lau/pen/mdyoKdW.css" rel="stylesheet">
  348.  
  349.  
  350. <body>
  351.  
  352. <div class="background">
  353.     <div class="main-box-hide"><div class="main-box">
  354.         <div class="flexbox row" id="fl1"> 
  355.             <div class="flexbox col title">
  356.            
  357.            
  358. <!-- ❁ ≖≖✿❁ ≖≖
  359.         FIRST MIDDLE AND LAST NAMES
  360.                                 ≖≖✿❁ ≖≖ ❁ -->
  361.                 <div class="names">
  362.                     <p>I can take</p>
  363.                 </div>
  364.            
  365.                 <div class="names">
  366.                     <p>you to</p>
  367.                 </div>
  368.            
  369.                 <div class="names">
  370.                     <p>Paradise...</p>
  371.                 </div>
  372.            
  373. <!-- ❁ ≖≖✿❁ ≖≖
  374.         BASIC INFORMATION
  375.     (Tip: copy paste everything from
  376.                     <tr> .. </tr> to add tables)
  377.                                         ≖≖✿❁ ≖≖ ❁ -->
  378.            
  379.                 <div class="basic box-css" style="background:transparent; color:var(--outer-font-color)"><div class="box-padding" style="height:250px;">
  380.                     <table>
  381.                         <tr>
  382.                             <td>Alias</td><td>Rika</td>
  383.                         </tr>
  384.                         <tr>
  385.                             <td>Age</td><td> 23 </td>
  386.                         </tr>
  387.                         <tr>
  388.                             <td>Birthdate</td><td> November 3rd</td>
  389.                         </tr>
  390.                         <tr>
  391.                             <td>Birthplace</td><td>South Korea</td>
  392.                         </tr>
  393.                         <tr>
  394.                             <td>Alligiance</td><td>The Mint Eye</td>
  395.                         </tr>
  396.                         <tr>
  397.                             <td>Occupation</td><td> 'The Savior' </td>
  398.                         </tr>
  399.                     </table>
  400.                 </div></div>
  401.            
  402.            
  403.             </div> <!-- Title div end -->
  404.        
  405. <!-- ❁ ≖≖✿❁ ≖≖
  406.                     MAIN HEADER PICTURE
  407.                 (RECOMMENDED: 300 X 500PX )
  408.                                         ≖≖✿❁ ≖≖ ❁ -->
  409.        
  410.             <div class="profile-picture box-css">
  411.                 <div class="pfp">
  412.                     <img src="https://i.pinimg.com/564x/b5/7b/eb/b57bebd23c9491244406d74b0f44bea6.jpg"/>
  413.                 </div>
  414.            
  415.  <!-- ❁ ≖≖✿❁ ≖≖
  416.                     QUOTES HERE
  417.                 (Adjust font-size IN CSS)
  418.                                         ≖≖✿❁ ≖≖ ❁ -->
  419.            
  420.                 <div class="quote box-padding">
  421.                     Do you believe in<br> the afterworld?
  422.                 </div>
  423.            
  424.             </div>
  425.        
  426.         <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  427.     <div class="trd-box flexbox col">
  428.    
  429. <!-- ❁ ≖≖✿❁ ≖≖
  430.                 APPEARANCE
  431.                             ≖≖✿❁ ≖≖ ❁ -->
  432.             <div class="appearance box-css">
  433.                 <div class="box-padding flexbox row">
  434.                
  435.                     <div class="info" style="text-align:justify">
  436.                         <p class="box-header" >Appearance</p>
  437.                     <table>
  438.                         <tr>
  439.                             <td>Height: 159cm</td><td>Weight: 46kg</td>
  440.                         </tr>
  441.                         <tr>
  442.                             <td>Hair Color: Blonde</td><td>Eye Color: Light Green</td>
  443.                         </tr>
  444.                     </table>
  445.                    
  446.               <p>Rika is a beautiful and slender fair-skinned young woman with long, wavy blonde hair that transitions to a lighter color with bangs swept to the left side, bright lime-green eyes and she is shown to be smiling most of the time.<br><br>
  447.  
  448. On normal occasions, she is seen wearing a brown knee-length dress with a large cream colored bow just below her collar bone on her left side. She has also been seen wearing a formal suit with her hair placed in a high ponytail when hosting the RFA parties.</p>
  449.                     </div>
  450.                
  451. <!-- ❁ ≖≖✿❁ ≖≖
  452.                 SMALL PIC
  453.                             ≖≖✿❁ ≖≖ ❁ -->                
  454.                     <div class="single-pic">
  455.                         <img src="https://i.pinimg.com/564x/0a/cf/d4/0acfd4c65491a7d171a628b630d71ff4.jpg"/>
  456.                     </div>
  457.                 </div>
  458.             </div>
  459.    
  460. <!-- ❁ ≖≖✿❁ ≖≖
  461.             PERSONALITY BOX
  462.                             ≖≖✿❁ ≖≖ ❁ -->
  463.    
  464.             <div class="personality box-css">
  465.                 <div class="box-padding flexbox row">
  466.                
  467. <!-- ❁ ≖≖✿❁ ≖≖
  468.                 SMALL PIC
  469.                             ≖≖✿❁ ≖≖ ❁ -->                
  470.                     <div class="single-pic">
  471.                         <img src="https://i.pinimg.com/564x/fa/69/a0/fa69a0379b7ed8d39ab98f7e4c359780.jpg"/>
  472.                     </div>
  473.                     <div class="info" style="text-align:justify">
  474.                     <p class="box-header">Personality</p>
  475.                    
  476.                     <p>Rika is a kind, caring, bright, strong-willed and charismatic person on the outside that is described by the RFA members. She is said to care deeply for others and wanted to help them achieve happiness, which is the sole reason for her creating the RFA and she is also capable of inviting many people to her parties, mainly due to her great influence on others.</p>
  477.                    
  478.                 </div>
  479.                 </div>
  480.             </div>
  481.    
  482. <!-- ❁ ≖≖✿❁ ≖≖
  483.                 GALLERY
  484.                             ≖≖✿❁ ≖≖ ❁ -->
  485.            
  486.             <div class="gallery" style="margin:10px">
  487.                
  488.             <p class="box-header">Gallery</p>
  489.             <br>
  490.                 <div class="pictures">
  491.                     <div class="flexbox row">
  492.                    
  493.        <!-- 1st Gallery Row div -->  
  494.                    
  495.                         <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/e/e9/V_46.png" style="width:200px" alt="pic1-width-180px"/>   <!-- PIC 1-->
  496.                     <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/5/53/V_14.png" style="width:200px" alt="pic2-width-180px"/>   <!-- PIC 2-->
  497.                    
  498.                    
  499.                     </div>  <!-- 1st Gallery Row end div -->
  500.                
  501.                 <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  502.                     <div class="flexbox row">
  503.                         <div class="flexbox col" style="width:180px">
  504.                        
  505.      <!-- 2ND Gallery Row div -->                    
  506.                         <img src="https://i.pinimg.com/564x/eb/f9/55/ebf955760a959bac04071bf396aec611.jpg" style="width:100%" alt="pic3-width-160px"/>      <!-- PIC 3 -->
  507.                        
  508.                         <img src="https://i.pinimg.com/564x/41/4f/ec/414fecc4e3dbc3ce213c747f2ad3be19.jpg" style="width:180px" alt="pic4-width-160px"/>     <!-- PIC 4 -->
  509.                        
  510.                         </div>
  511.                    
  512.                     <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  513.                         <div class="flexbox col" style="width:220px">
  514.                         <img src="https://i.pinimg.com/564x/fb/fd/34/fbfd340bfb0d56ae287323d9adb1adcb.jpg" style="width:220px; height:347px" alt="pic5-width-220px"/>  
  515.                         <!-- PIC 5 -->
  516.                         <img src="https://i.pinimg.com/564x/a0/68/5e/a0685ef560d54cab26954f29f324f009.jpg" style="width:220px" alt="pic6-width-220px"/>
  517.                         <!-- PIC 6 -->
  518.                         </div>
  519.                    
  520.                     </div> <!-- 2nd Gallery Row end div -->
  521.                
  522.                 <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  523.                     <div class="flexbox row">
  524.                         <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/a/a0/Event_8.png" style="width:200px" alt="pic6-width-180px"/>
  525.                         <!-- PIC 7 -->
  526.                    
  527.                     <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/a/a1/V_26.png" style="width:200px" alt="pic7-width-180px"/>           <!-- PIC 8 -->
  528.                    
  529.                     </div>  <!-- 3rd Gallery Row end div -->
  530.                
  531.                
  532.                 </div></div> <!-- Gallery end div -->
  533.    
  534.        
  535.         </div> <!-- 3rd Box End Div -->
  536.        
  537.        
  538.         <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  539.        
  540.         </div> <!-- flexbox div end || Fl1 -->
  541.    
  542.    
  543.     <!--    ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  544.             ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  545.             ❁ ≖≖✿❁ ≖≖         ≖≖✿❁ ≖≖ ❁
  546.             ❁ ≖≖✿❁ ≖≖ ON TO       ≖≖✿❁ ≖≖ ❁
  547.             ❁ ≖≖✿❁ ≖≖ THE NEXT    ≖≖✿❁ ≖≖ ❁
  548.             ❁ ≖≖✿❁ ≖≖ CONTENT ≖≖✿❁ ≖≖ ❁
  549.             ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  550.             ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  551.             ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  552.             ❁ ≖≖✿❁ ≖≖             ≖≖✿❁ ≖≖ ❁
  553.  
  554.         -->
  555.    
  556.     <!-- START OF FL2 -->
  557.         <div class="flexbox col" id="fl2" style="width:500px;height:1050px;margin-top:-1020px;margin-bottom:10px;">
  558.        
  559.             <div class="divider" style="overflow:hidden">
  560.             <div style="background:rgba(255, 255, 255, 0.3);width:100%;height:100%;"></div></div>  
  561.             <!-- DIVIDER -->
  562.        
  563.        
  564. <!-- ❁ ≖≖✿❁ ≖≖
  565.                 ABILITIES CONTENT
  566.                                     ≖≖✿❁ ≖≖ ❁ -->      
  567.         <div class="abilities box-css">
  568.                 <div class="box-padding">
  569.                     <p class="box-header">Abilities</p>
  570.                
  571.                     <div class="flexbox row">
  572.                         <div class="info"  style="width:300px;height:200px;text-align:justify">
  573.                         Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc et arcu faucibus, placerat augue ut, mollis tellus. Aenean quis est orci. Integer a lorem a tortor scelerisque rhoncus. Nunc posuere augue non nunc hendrerit, id mollis nisi rhoncus. Mauris tincidunt tincidunt mollis. Fusce tempus dolor eu magna elementum, quis faucibus velit sodales. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Aliquam in mattis massa. Nunc eget ornare orci. Nulla mattis purus a posuere sodales. Nullam sit amet leo felis. Duis sit amet consequat arcu, sed sollicitudin nunc. Phasellus id accumsan dui. Mauris tristique metus vitae urna malesuada pellentesque. Aliquam pretium nec dolor vel hendrerit.
  574.                         </div>
  575.                     <!-- Info End -->
  576.                    
  577.                         <div class="info" style="width:250px;height:200px">
  578.                        
  579. <!-- ❁ ≖≖✿❁ ≖≖
  580.                 ABILITIES TABLE CONTENT
  581.                                     ≖≖✿❁ ≖≖ ❁ -->                        
  582.                         <table style="color:var(--main-font-color);margin:10px auto;">
  583.                             <tr>
  584.                             <td>Manipulation</td><td>Persuasion</td>
  585.                             </tr>
  586.                             <tr>
  587.                             <td>Brainwash Ability</td><td>Leadership</td>
  588.                             </tr>
  589.                             <tr>
  590.                             <td>Betrayal</td><td>Illusion Manipulation</td>
  591.                             </tr>
  592.                         </table>
  593.                         </div> <!-- Info End -->
  594.                     </div>  <!-- Flexbox End -->
  595.                 </div>  <!-- Box Padding End -->
  596.             </div>  <!-- Box CSS End -->
  597.        
  598.         <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  599.        
  600.             <div class="divider" style="overflow:hidden">
  601.             <div style="background:rgba(255, 255, 255, 0.3);width:100%;height:100%;"></div></div>  
  602.             <!-- DIVIDER -->
  603.        
  604.        
  605. <!-- ❁ ≖≖✿❁ ≖≖
  606.             RELATIONS CONTENT
  607.                             ≖≖✿❁ ≖≖ ❁ -->        
  608.        
  609.             <div class="relationships box-css">
  610.                 <div class="box-padding" style="height:400px">
  611.                
  612.                 <p class="box-header">Relations</p>
  613.                
  614.                 <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  615.                     <div class="relation flexbox row" >
  616.                        
  617.                         <div class="info flexbox col" style="width:350px;">
  618.             <!-- RELATION NAME  -->
  619.                         <div class="box-header" style="text-align:right;margin-bottom:-10px">Fiance - <span style="color:var(--relation-color)">Kim Jihyun "V"</span></div>
  620.                        
  621.             <!-- RELATION INFORMATION  -->
  622.                         <p>V was Rika's fiance and they are seen to have loved each other very much. V proposed to her and the two became engaged. However, their relationship is highly dependent on one another to the point of it being unhealthy.</p>
  623.                        
  624. <!-- ❁ ≖≖✿❁ ≖≖
  625.             RELATIONS PICURES
  626.                             ≖≖✿❁ ≖≖ ❁ -->        
  627.                             <div class="flexbox row" style="margin-left:auto; margin-right:auto">
  628.                                 <img src="https://i.pinimg.com/564x/88/fd/69/88fd69527e8d3151016e041ab9056be9.jpg" style="width:150px"/>
  629.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/4/40/V_17.png" style="width:150px"/>
  630.                                 </div>
  631.                        
  632.                         </div> 
  633.                    
  634.         <!-- RELATION PERSON PIC  -->
  635.     <div class="single-pic relation-pic"><img src="https://i.imgur.com/7gSOS84.png"/></div>
  636.                    
  637.                     </div><!-- END of 1st Relation -->
  638.                
  639.                 <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  640.                
  641.                     <div class="relation flexbox row" >
  642.                        
  643.         <!-- RELATION PIC  -->
  644.     <div class="single-pic relation-pic"><img src="https://i.pinimg.com/564x/6b/cf/5b/6bcf5b02cbe603212621918feb9262a1.jpg"/></div>
  645.                    
  646.                    
  647.                         <div class="info flexbox col" style="width:350px;">
  648.                     <!-- RELATION NAME  -->
  649.                             <div class="box-header" style="text-align:left;margin-bottom:-10px"><span style="color:var(--relation-color)">Kim Yoosung</span> - Cousin</div>
  650.                        
  651.                     <!-- RELATION INFORMATION  -->
  652.                         <p>Rika is Yoosung's cousin through adoption. While the two did not meet until later on, Yoosung feels that they became close. The two worked on community service together. After the death of her puppy, Sally, Yoosung vowed to become a veterinarian.</p>
  653.                        
  654. <!-- ❁ ≖≖✿❁ ≖≖
  655.                 RELATIONS PICURES
  656.                                 ≖≖✿❁ ≖≖ ❁ -->
  657.                             <div class="flexbox row" style="margin-left:auto; margin-right:auto">
  658.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/f/f9/Yoosung_37.png" style="width:150px"/>
  659.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/5/5b/Yoosung_39.png" style="width:150px"/>
  660.                             </div>
  661.                            
  662.                        
  663.                        
  664.                     </div>
  665.                 </div> <!-- END of 2nd Relation -->
  666.                
  667.            <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->      
  668.                
  669.                 <div class="relation flexbox row" >
  670.                        
  671.                         <div class="info flexbox col" style="width:350px;">
  672.                     <!-- RELATION NAME  -->
  673.                             <div class="box-header" style="text-align:right;margin-bottom:-10px"><span style="color:var(--relation-color)">Ryu Hyun "Zen"</span> - Friend</div>
  674.                        
  675.                     <!-- RELATION INFORMATION  -->
  676.                         <p>Rika is one of Zen's first fans who is also seen admiring his plays and acting. It is shown when she gave him red flowers as a congratulation when they first met. They even took a picture together and later on, Rika helped him with his career by supporting him and inviting him to RFA.</p>
  677.                        
  678. <!-- ❁ ≖≖✿❁ ≖≖
  679.                 RELATIONS PICURES
  680.                                 ≖≖✿❁ ≖≖ ❁ -->
  681.                             <div class="flexbox row" style="margin-left:auto; margin-right:auto">
  682.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/4/4a/Zen_7.png" style="width:150px"/>
  683.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/2/26/Zen_31.jpg" style="width:150px"/>
  684.                             </div>
  685.                            
  686.                        
  687.                        
  688.                     </div>
  689.                
  690.                     <!-- RELATION PERSON PIC  -->
  691.     <div class="single-pic relation-pic"><img src="https://i.pinimg.com/originals/f9/c8/0f/f9c80f2fd47a1ed80b9a7aa58d4fe910.png"/></div>
  692.                
  693.                 </div> <!-- END of 3rd Relation -->
  694.                
  695.                
  696.                 <!-- ❁ ≖≖✿❁ ≖≖✿❁ ≖≖✿❁ ≖≖ ❁ -->
  697.                  
  698.                
  699.                 </div>  <!-- Box Padding End -->
  700.             </div>  <!-- RELATIONS Box CSS End -->
  701.        
  702.             <div class="divider" style="overflow:hidden">
  703.             <div style="background:rgba(255, 255, 255, 0.3);width:100%;height:100%;"></div></div>  
  704.             <!-- DIVIDER -->
  705.        
  706.        
  707.        
  708.             <div class="oog box-css" style="height:220px">
  709.                 <div class="box-padding flexbox row">
  710.                     <div class="oog-info flexbox col" style="width:200px">
  711.                    
  712. <!-- ❁ ≖≖✿❁ ≖≖
  713.             OOG INFORMATION CONTENT
  714.                                 ≖≖✿❁ ≖≖ ❁ -->            
  715.                    
  716.                         <div style="border-radius:100%; border:1px solid var(--border-1); width:110px;height:110px; margin-left:auto; margin-right:auto; padding:5px; overflow:hidden" >
  717.              
  718.              <!-- OOG PICTURE -->          
  719.                             <img src="https://pm1.narvii.com/6320/523634190a805d1ece8d90986b970764f02523ae_00.jpg" style="width:100%; border-radius:100%;" alt="oog-picture"/>
  720.                         </div>
  721.                    
  722.                         <div style="text-align:center; color:#A6A263; font-weight:bold; margin-top:4px; font-size:12px ">
  723.                         <span style="font-size:18px; letter-spacing:2px">Mina</span>    <br>
  724.                             GMT +9  <br>
  725.                             Rika's Fundraising Association<br>
  726.                         The Mint Eye
  727.                         </div>
  728.                    
  729.                     </div>  <!-- OOG INFO BOX END -->
  730.  
  731. <!-- ❁ ≖≖✿❁ ≖≖
  732.             PLAYLIST CONTENT
  733.                                 ≖≖✿❁ ≖≖ ❁ -->            
  734.                
  735.                     <div class="playlist flexbox col" style="width:280px;height:200px;overflow:auto">
  736.                    
  737.                    
  738.                     <p class="box-header">Playlist</p>
  739.                    
  740.                    
  741.                         <div class="song flexbox row">
  742.                            
  743.                             <div class="song-cover">
  744.                                 <img src="https://ih1.redbubble.net/image.353937724.4740/ap,550x550,12x12,1,transparent,t.png"/>
  745.                             </div>
  746.                        
  747.                        
  748.                             <div class="song-title">
  749.                                 <p>Mint Eye</p>
  750.                                 ???
  751.                             </div>
  752.                            
  753.                         </div> <!-- END SONG -->
  754.                    
  755.                         <div class="song flexbox row">
  756.                            
  757.                             <div class="song-cover">
  758.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/d/d5/MM_OST.jpg"/>
  759.                             </div>
  760.                        
  761.                        
  762.                             <div class="song-title">
  763.                                 <p>Mysterious Clues</p>
  764.                                 Unknown
  765.                             </div>
  766.                            
  767.                         </div>  <!-- END SONG -->
  768.                    
  769.                        
  770.                         <div class="song flexbox row">
  771.                            
  772.                             <div class="song-cover">
  773.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/d/d5/MM_OST.jpg"/>
  774.                             </div>
  775.                        
  776.                        
  777.                             <div class="song-title">
  778.                                 <p>I Miss Happy Rika</p>
  779.                                 ...
  780.                             </div>
  781.                            
  782.                         </div>  <!-- END SONG -->
  783.                    
  784.                         <div class="song flexbox row">
  785.                            
  786.                             <div class="song-cover">
  787.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/d/d5/MM_OST.jpg"/>
  788.                             </div>
  789.                        
  790.                        
  791.                             <div class="song-title">
  792.                                 <p>Light and Daffodils</p>
  793.                                 <p style="font-family:Arial"> &hearts;</p>
  794.                             </div>
  795.                            
  796.                         </div>
  797.                    
  798.                         <div class="song flexbox row">
  799.                            
  800.                             <div class="song-cover">
  801.                                 <img src="https://vignette.wikia.nocookie.net/mystic-messenger/images/d/d5/MM_OST.jpg"/>
  802.                             </div>
  803.                        
  804.                        
  805.                             <div class="song-title">
  806.                                 <p>Like the Sun in the Sky</p>
  807.                                 <p style="font-family:Arial"> ^-^ </p>
  808.                             </div>
  809.                            
  810.                         </div>  <!-- END SONG -->
  811.                    
  812.                     </div>  <!-- PLAYLIST BOX END -->
  813.                
  814.                    
  815.                
  816.                 </div>  <!-- Box Padding End -->
  817.             </div>  <!-- OOG BOX END -->
  818.        
  819.            
  820.             <div class="divider" style="overflow:hidden;width:880px;margin-left:15px;background-size:30%">
  821.             <div style="background:rgba(255, 255, 255, 0.3);width:100%;height:100%;"></div></div>  
  822.             <!-- DIVIDER -->
  823.        
  824.        
  825.        
  826.         </div>  <!-- flexbox div end || Fl2 -->
  827.    
  828.     </div></div>    <!-- main-box div end -->
  829.  
  830. <!-- ❁ ≖≖✿❁ ≖≖
  831.         CREDITS (DONT REMOVE PLEASE!)
  832.                                 ≖≖✿❁ ≖≖ ❁ -->
  833.  
  834.     <div class="credits">
  835.         2020 &copy; Coding by <a href="https://kawaii-lau.tumblr.com/" target="_blank">Kawaii-Lau</a>
  836.     </div>
  837.  
  838. </div>  <!-- background end -->
  839. </body>
Add Comment
Please, Sign In to add comment