iifast

Expandable Section

Mar 12th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.88 KB | None | 0 0
  1.  
  2. <div class='hidden-section-container'>
  3.   <div class='sh-section-btn'><span> Show ( Expand Me ) +  </span></div>
  4.   <div class='h-section-cont shw-box'>
  5.     <!-- All your text/html below this   -->
  6.      
  7.       <p>  WRITE YOUR TEXT HERE  </p>
  8.  
  9.     <!-- All your text/html above this -->
  10.   </div>
  11. </div>
  12. <br/>
  13. <hr/>
  14.  
  15.  
  16.  
  17.  
  18.  
  19. <br/>
  20. <!--  CSS : this is a comment ( tuto website ) : https://www.stramaxon.com/2013/09/expandable-section-boxes.html -->
  21. <style>
  22. .hidden-section-container {
  23.   background-color:rgba(209, 168, 237, 0.93);
  24.   box-shadow:0 2px 6px rgba(0,0,0,0.2);
  25. }
  26.  
  27. .sh-section-btn {
  28.   font-size:18px;
  29.   color:#b80000;
  30.   text-shadow:1px 1px 0px rgba(0,0,0,0.2);
  31.   padding:5px 10px;
  32.   cursor:pointer;
  33. }
  34.  
  35. .h-section-cont {
  36.  padding:10px 10px;
  37.  background-color:#d1a8ed;
  38.  display:none;
  39. }
  40. </style>
Advertisement
Add Comment
Please, Sign In to add comment