akauro

Simple light startpage inverted

Jun 20th, 2020
970
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5.     <title>home</title>
  6.     <link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css" />
  7.     <link href="https://fonts.googleapis.com/css2?family=Gaegu:wght@400;700&display=swap" rel="stylesheet" />
  8.     <style>
  9.         body {
  10.             font-family: 'Gaegu', cursive;
  11.             font-size: 18px;
  12.             background: #111;
  13.             color: #ccc;
  14.             text-shadow: 1px 1px 2px #222;
  15.         }
  16.         h1,
  17.         h2,
  18.         h3,
  19.         h4,
  20.         h5,
  21.         h6 {
  22.             font-family: 'Gaegu', cursive;
  23.             color: #eee;
  24.             font-weight: 700;
  25.             padding: 6px;
  26.             margin: 0;
  27.         }
  28.         .w3-input {
  29.             color: #ccc;
  30.             background: none;
  31.             border-bottom: 4px solid #222;
  32.             text-shadow: 1px 1px 2px #222;
  33.             transition: border 0.3s ease;
  34.         }
  35.         textarea:focus,
  36.         input:focus {
  37.             outline: 0;
  38.             border;
  39.             0;
  40.             border-bottom: 4px solid #4d79ff;
  41.         }
  42.         ::placeholder {
  43.             color: #999;
  44.             text-shadow: 1px 1px 2px #222;
  45.         }      
  46.         .w3-ul li {
  47.             line-height: 20px;
  48.             padding: 0;
  49.             border: 0;
  50.         }
  51.         a,
  52.         a > span {
  53.             position: relative;
  54.             color: #999;
  55.             text-decoration: none;
  56.             line-height: 22px;
  57.             transition: color .3s ease-in-out;
  58.         }
  59.         a:hover {
  60.             color: #eee;
  61.         }
  62.         a:before,
  63.         a:after,
  64.         a > span:before,
  65.         a > span:after {
  66.             content: '';
  67.             position: absolute;
  68.             transition: transform .3s ease-in-out;
  69.         }
  70.         .effect {
  71.             padding-top: 0;
  72.         }
  73.         .effect:before {
  74.             left: 0;
  75.             bottom: -3px;
  76.             width: 100%;
  77.             height: 2px;
  78.             background: #4d79ff;
  79.             transform: scaleX(0);
  80.         }
  81.         .effect:hover:before {
  82.             transform: scaleX(0.85);
  83.         }
  84.         img {
  85.             display: block;
  86.             margin-bottom: -25px;
  87.             margin-left: auto;
  88.             margin-right: auto;
  89.             width: 100%;
  90.         }
  91.     </style>
  92. </head>
  93.  
  94. <body>
  95.     <div class="w3-container w3-display-middle w3-centered" style="width: 22em; margin-top: -4em;">
  96.         <img src="https://i.imgur.com/PktQ1i7.png" style="filter: invert(100%);"/>
  97.         <form method="get" action="https://www.google.com/search">
  98.             <input class="w3-input w3-center w3-section" type="text" name="q" placeholder="Looking for something?" />
  99.         </form>
  100.         <div class="w3-cell-row">
  101.             <div class="w3-container w3-cell w3-mobile">
  102.                 <ul class="w3-ul w3-center">
  103.                     <li><h4>category</h4></li>
  104.                     <li><a class="effect" href="#">link</a></li>
  105.                 </ul>
  106.             </div>
  107.             <div class="w3-container w3-cell w3-mobile">
  108.                 <ul class="w3-ul w3-center">
  109.                     <li><h4>category</h4></li>
  110.                     <li><a class="effect" href="#">link</a></li>
  111.                 </ul>
  112.             </div>
  113.             <div class="w3-container w3-cell w3-mobile">
  114.                 <ul class="w3-ul w3-center">
  115.                     <li><h4>category</h4></li>
  116.                     <li><a class="effect" href="#">link</a></li>
  117.                 </ul>
  118.             </div>
  119.         </div>
  120.     </div>
  121. </body>
  122.  
  123. </html>
Advertisement
Add Comment
Please, Sign In to add comment