Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.81 KB | None | 0 0
  1. HTML
  2. <div class="article">
  3.     <div class="article_background"></div>
  4.     <div class="article_content">
  5.         <h1>Abysse Life</h1>
  6.         <br>
  7.         <p>L'île où il faut être !</p>
  8.    </div>
  9.  
  10. CSS
  11. .article_background {
  12.    width: 100%;
  13.    height: 1000px;
  14.    position: fixed;
  15.    background: url('/abysse/img/bg.jpg') no-repeat;
  16.    background-size: cover;
  17.    background-position: center;
  18.    margin: 0 auto;
  19.    filter: blur(3px);
  20.    z-index: -1;
  21. }
  22.  
  23. .article_content {
  24.    width: 50%;
  25.    height: 150px;
  26.    position: relative;
  27.    margin: 10% 50%;
  28.    transform: translateX(-50%);
  29.    text-align: center;
  30.    color: #FFF;
  31.    text-transform: uppercase;
  32.    display: flex;
  33.    flex-direction: column;
  34.    justify-content: space-around;
  35. }
  36.  
  37. .article_content h1 {
  38.    font-size: 60px;
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement