Advertisement
Guest User

Untitled

a guest
Apr 7th, 2020
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.86 KB | None | 0 0
  1. @media screen and (max-width: 997px) {
  2.   .container {
  3.     width: 100%;
  4.     text-align: center;
  5.   }
  6.  
  7.   #menu a {
  8.     width: 100%;
  9.     border-radius: unset; /* pode ser 0 ou unset para tirar */
  10.     padding: 4px 0;
  11.   }
  12.  
  13.   section {
  14.     /* o important deve ser usado com cuidado, e serve para priorizar a regra. */
  15.     width: 80% !important;
  16.   }
  17.  
  18.   h1 {
  19.     display: none;
  20.   }
  21.  
  22.   .container img {
  23.     float: none;
  24.     margin-bottom: 20px;
  25.  
  26.     animation-name: balanca-cabeca;
  27.     animation-duration: 2s;
  28.     animation-iteration-count: infinite;
  29.     animation-direction: alternate;
  30.   }
  31.  
  32.   @keyframes balanca-cabeca {
  33.     from {
  34.       transform: rotate(-45deg);
  35.     }
  36.     to {
  37.       transform: rotate(45deg);
  38.     }
  39.   }
  40.  
  41.   /* contato */
  42.   #contato aside:first-child {
  43.     display: none;
  44.   }
  45.  
  46.   #contato aside {
  47.     width: auto;
  48.   }
  49.  
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement