Advertisement
angeldp

Ejer05EP

Apr 12th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1. header h1, header p{display:none;}
  2. header>div {
  3. padding: 50% 0;
  4. background-color: #f5f5f5;}
  5. nav ul {margin: 0; padding: 0;}
  6. nav a {
  7.     display: block;
  8.     padding: 15px 0;
  9.     text-align: center;
  10.     text-decoration: none;
  11.     color: white;
  12.     background: #66cca8;
  13.     border-bottom: 4px solid #fff;
  14.     text-transform: uppercase;}
  15. nav a:hover,nav a:visited {    color: white;}
  16. nav a:hover {    text-decoration: underline;}
  17. /* ==========================================================================
  18.    Media Queries
  19.    ========================================================================== */
  20. @media screen and (min-width: 480px) {
  21.     nav>ul>li {
  22.         display:block;
  23.         float: left;
  24.         width:25%;
  25.         padding: 10px 0;    }
  26.     nav>ul>li>a {
  27.       vertical-align:middle;
  28.         border:0;
  29.         border-right: 2px solid #fff;    }
  30.     nav li:last-child a {  border-right: 0;    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement