Facebook
From Violet Anoa, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 40
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4. <head>
  5.     <meta charset="UTF-8">
  6.     <title>Document</title>
  7.     <style>
  8.         div {
  9.             position: fixed;
  10.         }
  11.  
  12.         .sun {
  13.             width: 20vw;
  14.             height: 20vw;
  15.             border-radius: 50%;
  16.             background-color: yellow;
  17.             z-index: 2;
  18.             bottom: 2vw;
  19.  
  20.         }
  21.  
  22.         .grass {
  23.  
  24.             background-color: green;
  25.  
  26.             height: 10vw;
  27.             z-index: 2;
  28.             bottom: 0;
  29.             left: 0;
  30.             right: 0;
  31.         }
  32.  
  33.         .sky {
  34.             background-color: aqua;
  35.             top: 0;
  36.             height: 100vh;
  37.             z-index: 1;
  38.             left: 0;
  39.             right: 0;
  40.  
  41.         }
  42.     </style>
  43. </head>
  44.  
  45. <body>
  46.     <div class="sun"></div>
  47.     <div class="grass"></div>
  48.     <div class="sky"></div>
  49. </body></html>