Advertisement
nathanguillaumin

style.css

Feb 23rd, 2020
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.82 KB | None | 0 0
  1. body {
  2.     margin: 0;
  3. }
  4.  
  5. nav {
  6.   background-color: #4d4646;
  7.   color: white;
  8. }
  9.  
  10. ul {
  11.   list-style: none;
  12.   height: 30px;
  13.   padding: 0;
  14.   margin: 0;
  15. }
  16.  
  17.  
  18.  
  19. li {
  20.   display: inline-block;
  21.   padding: 5px 10px 10px 10px;
  22. }
  23.  
  24. #autofocus {
  25.   background-color: #ededed;
  26.   color: #4d4646;
  27.  
  28. }
  29.  
  30. .carousel {
  31.   padding: 100px;
  32.   background-color: #ededed;
  33. }
  34.  
  35. #fellows {
  36.     text-align: center;
  37. }
  38.  
  39. .images {
  40.   margin: 0 auto;
  41.   text-align: center;
  42. }
  43.  
  44. article {
  45.     display: inline-block;
  46.     width: 300px;
  47.     height: 300px;
  48.     margin-left: 20px;
  49.     margin-bottom: 100px;
  50.     background-color: #ededed;
  51. }
  52.  
  53. form {
  54.   margin-left: 15px;
  55.   margin-right: 15px;
  56.   border-top: 1px black solid;
  57. }
  58.  
  59. #myform {
  60.   margin: auto;
  61.   width: 350px;
  62. }
  63.  
  64. input, textarea {
  65.   margin-bottom: 10px;
  66.   width: 350px;
  67. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement