Kastus

WCS Quest on responsive web design

Oct 10th, 2022
1,645
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.76 KB | None | 1 0
  1. li {
  2.     display: inline;
  3.     padding-right: 50px;
  4.   }
  5.  
  6.   nav {
  7.     margin-bottom: 100px;
  8.   }
  9.  
  10.   h2 {
  11.     text-align: center;
  12.     margin-top: 50px;
  13.     margin-bottom: 50px;
  14.   }
  15.  
  16.   .contact-header {
  17.     display: inline;
  18.   }
  19.  
  20.   input,
  21.   textarea {
  22.     display: block;
  23.     margin: 0 auto;
  24.     width: 50%;
  25.     padding: 10px;
  26.     margin-bottom: 25px;
  27.   }
  28.  
  29. .carousel {
  30.     border: 1px solid red;
  31.     background-color: gray;
  32. }
  33.  
  34.   .article {
  35.     display: flex;
  36.     justify-content: space-between;
  37.   }
  38.  
  39.   /* Mobile Styles */
  40. @media only screen and (max-width: 960px) {
  41.     .carousel, .article {
  42.         display: none;
  43.     }
  44.  
  45.     h2 {
  46.         font-size: 30px;
  47.     }
  48.  
  49.     .contact-header {
  50.         text-align: center;
  51.       }
  52.   }
Advertisement
Add Comment
Please, Sign In to add comment