Advertisement
Thelz

CSSMEDIAQUERY

Oct 9th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.52 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta name="viewport" content="width= device-width", intial-scale="1">
  5.     <title>Davitra Eka S XI RPL 2</title>
  6.     <style type="text/css">
  7.         body {
  8.             background: ghost;
  9.             font-family: 'Segoe UI', serif;
  10.         }
  11.  
  12.         header {
  13.             text-align: center;
  14.         }
  15.  
  16.         header h1 {
  17.             padding: 0px;
  18.             margin: 0px;
  19.         }
  20.  
  21.         nav {
  22.             margin-top: 10px;
  23.             display: inline-block;
  24.         }
  25.         nav ul {
  26.             list-style: none;
  27.             display: inline-block;
  28.             padding: 0px;
  29.             margin: 0px;
  30.         }
  31.         nav  ul li {
  32.             display: inline-block;
  33.             margin-right: 10px;
  34.             font-size: 24px;
  35.         }
  36.         nav a {
  37.             transition: .3s;
  38.             color: #666;
  39.             text-decoration: none;
  40.         }
  41.         nav a:hover {
  42.             transition: .3s;
  43.             font-weight: bold;
  44.         }
  45.         @media (max-width: 320px){
  46.             nav {
  47.                 width: 100%
  48.             }
  49.             nav ul, nav ul li{
  50.                 display: block;
  51.             }
  52.             nav ul li {
  53.                 margin-bottom: 10px;
  54.                 border-bottom: 1px solid #ddd;
  55.                 width: 100%
  56.             }
  57.             nav a{
  58.                 font-size: 12px;
  59.             }
  60.         }
  61.     </style>
  62. </head>
  63. <body>
  64.     <header>
  65.         <h1 class="title">Thelz's Crack and Shenanigans</h1>
  66.         <nav>
  67.             <ul>
  68.                 <li><a href="#">Home</a></li>
  69.                 <li><a href="#">About us</a></li>
  70.                 <li><a href="#">Products</a></li>
  71.                 <li><a href="#">Service</a></li>
  72.                 <li><a href="#">Testimonial</a></li>
  73.                 <li><a href="#">Favorite</a></li>
  74.                 <li><a href="#">Promo</a></li>
  75.                 <li><a href="#">Deals</a></li>
  76.                 <li><a href="#">Contact Us</a></li>
  77.                 <li><a href="#">Location</a></li>
  78.             </ul>
  79.         </nav>
  80.     </header>
  81. </body>
  82. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement