tipsypastels

Untitled

May 7th, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.64 KB | None | 0 0
  1. <style scoped>
  2.   .section-banner {
  3.     height: 300px;
  4.  
  5.     display: flex;
  6.     flex-direction: column;
  7.  
  8.  
  9.     color: white;
  10.     background-image: url(http://i.imgur.com/zYkTQSR.jpg);
  11.   }
  12.  
  13.   .section-banner main {
  14.     flex-grow: 1;
  15.  
  16.     display: flex;
  17.     align-items: center;
  18.     justify-content: center;
  19.    
  20.     font-size: 3rem;
  21.     font-family: Facit;
  22.     font-weight: bold;
  23.     text-shadow: 2px 2px 2px red, 4px 4px 2px green;
  24.   }
  25.  
  26.   .section-banner main a {
  27.     color: inherit;
  28.   }
  29.  
  30.   .section-banner footer {
  31.     background-color: rgba(0, 0, 0, 0.5);
  32.  
  33.     display: flex;
  34.   }
  35.  
  36.   .section-banner footer a {
  37.     text-transform: uppercase;
  38.     text-shadow: 2px 2px 2px black;
  39.     font-weight: bold;
  40.     font-size: 1.2rem;
  41.     color: inherit;
  42.  
  43.     padding: 0.25rem 1.75rem;
  44.   }
  45.  
  46.   .section-banner footer .spacer {
  47.     flex-grow: 1;
  48.   }
  49.  
  50.   .section-banner footer .spacer + a {
  51.     background-color: #CA13AB;
  52.   }
  53.  
  54.   body:not(.forumdisplay) .section-banner {
  55.     height: 200px;
  56.   }  
  57.  
  58.   body:not(.forumdisplay) .section-banner footer {
  59.     display: none;
  60.   }
  61.  
  62.   @media screen and (max-width: 768px) {
  63.     .section-banner {
  64.       height: 150px !important;
  65.     }
  66.  
  67.     .section-banner footer {
  68.       display: none;
  69.     }
  70.   }
  71. </style>
  72.  
  73. <div class="section-banner omnibar-padding padding-0px">
  74.   <main>
  75.     <a href="#">
  76.       The Duck Pond
  77.     </a>
  78.   </main>
  79.  
  80.   <footer>
  81.     <a href="#">
  82.       Link 1
  83.     </a>
  84.  
  85.     <a href="#">
  86.       Link 2
  87.     </a>
  88.  
  89.     <a href="#">
  90.       Link 3
  91.     </a>
  92.  
  93.     <div class="spacer"></div>
  94.  
  95.     <a href="#">
  96.       Featured Link
  97.     </a>
  98.   </footer>
  99. </div>
Advertisement
Add Comment
Please, Sign In to add comment