Advertisement
Guest User

CSS

a guest
Mar 5th, 2017
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.02 KB | None | 0 0
  1. body{
  2.     margin: 0;
  3.     font-family: 'Lato', sans-serif;
  4. }
  5.  
  6. #b{
  7.     color: #000;
  8.     font-family: 'Open Sans', sans-serif;
  9.     float: left;
  10.     font-weight: bold;
  11.     margin-left: 100px;
  12. }
  13.  
  14. #s{
  15.     color: #bc0909;
  16.     font-family: 'Open Sans', sans-serif;
  17.     float: left;
  18.     font-weight: bold;
  19. }
  20.  
  21. .navbar{
  22.     float: right;
  23. }
  24.  
  25. .navbar ul{
  26.     list-style: none;
  27.     padding: 10px;
  28. }
  29.  
  30. .navbar ul li{
  31.     float: left;
  32.     padding: 5px;
  33. }
  34.  
  35. .navbar a{
  36.     text-decoration: none;
  37.     color: #000;
  38. }
  39.  
  40. .navbar a:active{
  41.     color: #7d8aa0;
  42. }
  43.  
  44. #content h1{
  45.     margin-top: 50px;
  46.     text-align: center;
  47. }
  48.  
  49. #content h3{
  50.     margin-left: 50px;
  51.     margin-right: 50px;
  52.     text-align: center;
  53. }
  54.  
  55. .button a{
  56.     margin-left: 45%;
  57.     margin-right: 45%;
  58.     background-color: #222;
  59.     text-decoration: none;
  60.     color: #fff;
  61.     padding: 5px;
  62.     border-radius: 6px;
  63. }
  64.  
  65. #content h3{
  66.     text-align: left;
  67. }
  68.  
  69. .projects img{
  70.     margin: 20px;
  71.     width: 150px;
  72.     display: block;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement