Advertisement
akauro

Simple light startpage

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