Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.57 KB | None | 0 0
  1. body, html {
  2.   margin: auto;
  3.   width: 1300px;
  4.   font-family: "Open Sans";
  5. }
  6.  
  7. .navbar {
  8.   display: inline-block;
  9.   width: 100%;
  10.   background-color: rgb(0,255,0);
  11.   padding: 10px 20px;
  12.   font-size: 20px;
  13.   font-weight: bolder;
  14.   overflow: hidden;
  15. }
  16.  
  17. .nav-brand {
  18.   width: 50%;
  19.   float: left;
  20. }
  21.  
  22. .nav-brand a {
  23.   text-decoration: none;
  24.   color: white;
  25. }
  26.  
  27. .nav-list {
  28.   margin: 0;
  29.   list-style-type: none;
  30.   text-align: right;
  31. }
  32.  
  33. .nav-list li {
  34.   display: inline;
  35.   padding: 0 0 0 10px;
  36. }
  37.  
  38. li a {
  39.   text-decoration: none;
  40.   color: rgb(230,230,230);
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement