faiz14

bgBlurLoginLinux

Feb 19th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Login</title>
  8.     <style>
  9.         * {
  10.             box-sizing: border-box;
  11.         }
  12.         body {
  13.             background: url("bg.jpg")no-repeat;
  14.             background-size: cover;
  15.             height: 100vh;
  16.             filter: blur(8px) !important;
  17.             -webkit-filter: blur(8px) !important;
  18.             background-position: center;
  19.             backdrop-filter: blur(8px);
  20.         }
  21.         .container {
  22.             /* width: 100%;
  23.             height: 100%;
  24.             background-color: rgba(255, 255, 255, 0.5); */
  25.             /* backdrop-filter: blur(50px);
  26.             filter: blur(300px); */
  27.         }
  28.         /* .container::before {
  29.             -webkit-backdrop-filter: blur(70px);
  30.             backdrop-filter: blur(70px);
  31.             background-color: rgba(255, 255, 255, 0.3);
  32.         } */
  33.     </style>
  34. </head>
  35. <body>
  36.    
  37. <div class="container"></div>
  38.  
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment