Advertisement
Guest User

style.css

a guest
Apr 26th, 2020
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.99 KB | None | 0 0
  1. body {
  2.   text-align: center;
  3.   box-sizing: border-box;
  4.   background-color: whitesmoke;
  5.   font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  6. }
  7.  
  8. nav {
  9.   text-align: left;
  10.   background-color: black;
  11.   height: 50px;
  12.   }
  13.  
  14. li{
  15.    list-style-type: none;
  16.    padding: 20px 50px;
  17.    color: white;
  18.    display: table-cell;
  19.    vertical-align: middle;
  20.  }
  21.  
  22.  li:hover{
  23.    color: grey;
  24.    background-color: gainsboro;
  25.  }
  26.  
  27.  .carousel{
  28.    height: 200px;
  29.    width: auto;
  30.    background-color: gray;
  31.  }
  32.  
  33. span{
  34.   font-size: 70%;
  35. }
  36.  
  37. #firsth2{
  38.   padding: 25px 0px;
  39. }
  40.  
  41. #pic{
  42.   padding: 100px 0px;
  43. }
  44.  
  45. article{
  46.   display:inline;
  47.   background-color: gray;
  48.   margin: 0px 20px;
  49.   padding: 100px 200px;
  50. }
  51.  
  52.  
  53. #contact{
  54.   text-align: left;
  55.   margin: 10px 0px 25px 0px;
  56. }
  57.  
  58. hr{
  59.   margin: 100px 0px 0px 0px;
  60. }
  61.  
  62. input {
  63.   margin: 0 auto;
  64.   margin: 3px 0px;
  65.   width: 90%;
  66. }
  67.  
  68. textarea{
  69.   margin: 0 auto;
  70.   margin: 3px 0px;
  71.   width: 90%;
  72.   height: 200px;
  73. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement