sundustboy

Toyhouse Code - Halo

Apr 18th, 2019 (edited)
1,745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.02 KB | None | 0 0
  1. <!-----------------------------------------
  2. -------------------------------------------
  3.  
  4. '||'  '||'     |     '||'       ..|''||  
  5.  ||    ||     |||     ||       .|'    ||  
  6. ||''''||    |  ||    ||       ||      ||
  7. ||    ||   .''''|.   ||       '|.     ||
  8. .||.  .||. .|.  .||. .||.....|  ''|...|'  
  9.  
  10. a free character profile code by DUSTCHOMPS
  11.  
  12.  https://pastebin.com/ZaCD1H4K
  13.  
  14. -------------------------------------------
  15. -------------------------------------------
  16.  
  17. <!--CONTAINER-->
  18. <div class="card rounded mx-auto" style="max-width:500px; border:3px solid; overflow:hidden;">
  19.  
  20.  <!--HEADER-->
  21.  <div class="card-header text-light bg-secondary" style="text-align:center; font-size:25px; font-weight:bold; letter-spacing:2px;">
  22.    NAME
  23.  </div>
  24.  <!--HEADER END-->
  25.  
  26.  <!--BASICS-->
  27.  <div class="text-light bg-dark" style="width:100%; padding:10px 0; font-size:18px; text-align:center; border-bottom:1px solid;">
  28.    gender | species | sexuality
  29.  </div>
  30.  <!--BASICS END-->
  31.  
  32.  <!--IMAGE-->
  33.  <div class="card-img w-100 bg-light" style="border-bottom:1px solid;">
  34.    <!--Image URL goes here. Looks best with images 500px wide or larger.-->
  35.    <img src="https://i.imgur.com/k8d2f0w.jpg">
  36.  </div>
  37.  <!--IMAGE END-->
  38.  
  39.  <!--REFERENCE (copy and paste more of these if needed)-->
  40.    <a href="" class="subheader w-100 text-light bg-dark btn" style="font-size:16px; padding:10px; text-align:center; border-bottom:1px solid;">
  41.      <i class="fas fa-image" style="margin-right:5px;"></i> REFERENCE
  42.    </a>
  43.  <!--REFERENCE END-->
  44.  
  45.  <!--THEME SONGS BUTTON-->
  46.  <a class="subheader w-100 text-light bg-dark btn" data-toggle="collapse" href="#songs" role="button" style="font-size:16px; text-align:center; padding:10px; border-bottom:1px solid;">
  47.    <i class="fas fa-music" style="margin-right:5px;"></i> THEME SONGS <i class="fas fa-caret-down" style="margin-left:5px;"></i>
  48.  </a>
  49.  <!--THEME SONGS BUTTON END-->
  50.  
  51.  <!--THEME SONGS CONTENT-->
  52.  <div class="collapse bg-secondary text-light" id="songs" style="">
  53.    
  54.    <!--Copy or delete as many of these as you need below this line-->
  55.    
  56.    <!--SONG-->
  57.    <a href="" class="bg-light text-dark w-100 btn" style="display:block; padding:10px; border-bottom:1px solid;">
  58.        <b>Song</b> by Artist <i class="fas fa-caret-right" style="margin-left:5px;"></i>
  59.    </a>
  60.    <!--SONG END-->
  61.    
  62.    <!--SONG-->
  63.    <a href="" class="bg-light text-dark w-100 btn" style="display:block; padding:10px; border-bottom:1px solid;">
  64.        <b>Song</b> by Artist <i class="fas fa-caret-right" style="margin-left:5px;"></i>
  65.    </a>
  66.    <!--SONG END-->
  67.    
  68.  </div>
  69.  <!--THEME SONGS CONTENT END-->
  70.  
  71.  <!--RELATIONSHIPS BUTTON-->
  72.  <a class="subheader w-100 text-light bg-dark btn" data-toggle="collapse" href="#relationships" role="button" style="font-size:16px; padding:10px; text-align:center;">
  73.    <i class="fas fa-heart" style="margin-right:5px;"></i> RELATIONSHIPS <i class="fas fa-caret-down" style="margin-left:5px;"></i>
  74.  </a>
  75.  <!--RELATIONSHIPS BUTTON END-->
  76.  
  77.  <!--RELATIONSHIPS CONTENT-->
  78.  <div class="collapse bg-light" id="relationships" style="padding:10px 10px 0 10px;">
  79.    <div class="row w-100 mx-auto justify-content-center">
  80.      
  81.      <!-- Delete or copy as many of these as you need below this line -->
  82.      
  83.      <!-- Relationship -->
  84.      <div class="col-xs-6 col-sm-4" style="margin-bottom:10px;">
  85.        <!--Link goes here-->
  86.        <a href="" class="card mx-auto bg-dark text-light" style="display:block; text-align:center; width:100%; max-width:150px; border:none; overflow:hidden;">
  87.          <span class="card-header bg-dark text-light" style="text-transform:uppercase; font-size:14px; font-weight:bold; border-radius:5px 5px 0 0;">
  88.            NAME
  89.          </span>
  90.          <!--Image goes here. Looks best with a square image 150x150px or larger-->
  91.          <img src="https://i.imgur.com/CJoRWjO.png" class="card-img rounded-0"><br>
  92.          relationship
  93.        </a>
  94.      </div>
  95.      <!---->
  96.      
  97.      <!-- Relationship -->
  98.      <div class="col-xs-6 col-sm-4" style="margin-bottom:10px;">
  99.        <!--Link goes here-->
  100.        <a href="" class="card mx-auto bg-dark text-light" style="display:block; text-align:center; width:100%; max-width:150px; border:none; overflow:hidden;">
  101.          <span class="card-header bg-dark text-light" style="text-transform:uppercase; font-size:14px; font-weight:bold; border-radius:5px 5px 0 0;">
  102.            NAME
  103.          </span>
  104.          <!--Image goes here. Looks best with a square image 150x150px or larger-->
  105.          <img src="https://i.imgur.com/CJoRWjO.png" class="card-img rounded-0"><br>
  106.          relationship
  107.        </a>
  108.      </div>
  109.      <!---->
  110.      
  111.    </div>
  112.  </div>
  113.  <!--RELATIONSHIPS CONTENT END-->
  114.  
  115. </div>
  116. <!--CONTAINER END-->
  117.  
  118. <!-- CREDIT (DO NOT REMOVE) --><div style="width:100%; max-width:490px; margin-top:5px; margin-left:auto; margin-right:auto; text-align:right; font-size:11px; margin-bottom:-10px;">code by @dustchomps</div>
Add Comment
Please, Sign In to add comment