Advertisement
teslariu

estilo.css

Mar 18th, 2022
1,005
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.71 KB | None | 0 0
  1. @import url('https://fonts.googleapis.com/css2?family=Coiny&family=Roboto:wght@400;700&display=swap');
  2.  
  3. * {
  4.     box-sizing: border-box;
  5. }
  6.  
  7. body {
  8.     color: #333;
  9.     font: 400 24px 'Roboto', sans-serif;
  10. }
  11.  
  12. nav h1, footer h1 {
  13.     font-family: 'Coiny', cursive;
  14. }
  15.  
  16. nav {
  17.     padding: 20px;
  18.     text-transform: capitalize;
  19. }
  20.  
  21. header h1 {
  22.     font-size: 41px;
  23. }
  24.  
  25. h1,h2,h3,h4 {
  26.     color: black;
  27. }
  28.  
  29. h2,h3 {
  30.     font-size: 20px;
  31.     background-color: #FCEE21;
  32. }
  33.  
  34. h3 {
  35.     font-size: 26px;
  36. }
  37.  
  38. footer {
  39.     background-color: #FCEE21;
  40. }
  41.  
  42. h4 {
  43.     font-size: 51px;
  44.     color: white;
  45.     background-color: black;
  46. }
  47.  
  48. footer h1 {
  49.     font-size: 33px;
  50. }
  51.  
  52. main {
  53.     font-size: 21px;
  54. }
  55.  
  56.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement