Advertisement
teslariu

estilo.css

Aug 27th, 2022
1,362
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.51 KB | None | 0 0
  1. .total {
  2.     overflow: auto;
  3. }
  4.  
  5. #principal {
  6.     margin-left: 4px;
  7. }
  8.  
  9. #barraLateral {
  10.     float: none;
  11.     width: auto
  12. }
  13.  
  14. #menu {
  15.     margin: 0;
  16.     padding: 0;
  17. }
  18.  
  19. .item {
  20.     background: rosybrown;
  21.     border: 3px solid violet;
  22.     border-radius: 4px;
  23.     list-style-type: none;
  24.     margin: 4px;
  25.     padding: 2px;
  26. }
  27.  
  28. @media screen and (min-width: 350px){
  29.     #barraLateral {
  30.         float: left;
  31.         width: 200px;
  32.     }
  33.     #principal {
  34.         margin-left: 180px;
  35.     }
  36.        
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement