HyugaPaolo

CSS #1

Apr 19th, 2018
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.72 KB | None | 0 0
  1. body {
  2.     background-color: #f8f9fa;
  3.     margin: 0;
  4. }
  5. .Titolo {
  6.     background: #6E6F6E;
  7.     color: #ffffff; /*colore titolo*/
  8.     font-size: 60px; /*Grandezza  Font*/
  9.  
  10.     /*serve per renderlo fluido:*/
  11.     width: auto;
  12.     height: auto;
  13.     text-align: center;
  14.     text-anchor: middle;
  15. }
  16. .impo {
  17.     background-color: #6E6F6E;
  18.     border: none; /*non si notano i bordi*/
  19.     color: white;
  20.     text-align: center;
  21.    
  22.     cursor: pointer;
  23.     font-size: 10px;
  24. }
  25.  
  26.  
  27. .container {
  28.     animation:fac
  29.    
  30.        
  31. }
  32.  
  33.  
  34. @media only screen and (max-width:600px)
  35. {
  36.     .Titolo{
  37.     font-size: 30px;
  38.     text-align:center;
  39.     text-anchor: start;
  40.     }
  41.     .impo{
  42.         font-size: 5px;
  43.        
  44.     }
  45. }
Advertisement
Add Comment
Please, Sign In to add comment