Advertisement
Guest User

Untitled

a guest
Nov 21st, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.06 KB | None | 0 0
  1. .menu {
  2.     display: flex;
  3.     background-color: #35353B;
  4.     width: 100%;
  5.     height: 35px;
  6. }
  7.  
  8. .menu ul {
  9.     display: flex;
  10.     align-items: center;
  11.     justify-content: left;
  12.     list-style-type: none;
  13. }
  14.  
  15. .menu li {
  16.     display: inline-block;
  17. }
  18.  
  19. .btn{
  20.     background-color: inherit;
  21.     padding: 3px 40px;
  22.     font-size: 24px;
  23.     cursor: pointer;
  24.     display: inline-block;
  25.     background: #35353B;
  26.     color: #E5E5F0;
  27.   }
  28.  
  29.  .btn:hover{
  30.     background: white;
  31.     color: black;
  32.  }
  33.  
  34.  .carousel{
  35.      width: 100%;
  36.      height: 400px;
  37.      background-color: #DFDFDF;
  38.  }
  39.  
  40.  section {
  41.     text-align: center;
  42.  }
  43.  
  44.  section h2{
  45.      padding: 15px;
  46.  }
  47.  
  48.  section article{
  49.     display: inline-block;
  50.     margin-top: 20px;
  51.     margin-bottom: 20px;
  52.     margin-left: 5px;
  53.     margin-right: 5px;
  54.     background-color: #DFDFDF;
  55.     height: 400px;
  56.     width: 300px;
  57.  }
  58.  hr {
  59.     border-width: 2px;
  60.  }
  61.  
  62.  form input, textarea {
  63.     margin: 30px auto;
  64.     display: block;
  65.     width: 50%;
  66.  }
  67.  
  68.  form textarea{
  69.      min-height: 100px;
  70.  }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement