Advertisement
orko

style.css

Feb 20th, 2020
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.61 KB | None | 0 0
  1. nav{
  2.     background-color: grey;
  3. }
  4.  
  5. ul{
  6.     list-style: none;
  7.     margin: 0px;
  8. }
  9.  
  10.  
  11. li{
  12.     display: inline-block;
  13.     padding: 15px;
  14. }
  15.  
  16. .carousel{
  17.     width: 100%;
  18.     height: 200px;
  19.     background-color: rgb(222, 216, 213);
  20.     margin: 0px;
  21. }
  22.  
  23. #fellows{
  24.     text-align: center;
  25.     margin: 50px;
  26. }
  27.  
  28. article{
  29.     display: inline-block;
  30. }
  31.  
  32. .pic{
  33.     width: 330px;
  34.     height: 300px;
  35.     background-color: rgb(222, 216, 213);
  36.     padding: 40px;
  37.     margin: 25px;
  38.     margin-left: auto;
  39.     margin-right: auto;
  40. }
  41.  
  42. .form{
  43.     display: block;
  44.     margin: 10px;
  45.     width: 800px;
  46.     margin-left: auto;
  47.     margin-right: auto;
  48. }
  49.  
  50. #text{
  51.     height: 100px;
  52. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement