Advertisement
Guest User

aula

a guest
Feb 19th, 2020
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. * {
  2. font-family: 'oswald', sans-serif;
  3. box-sizing: border-box;
  4. }
  5.  
  6. body {
  7. height: 100vh;
  8. margin: 0px;
  9. display: grid;
  10. grid-template-rows: 120px 1fr 60px;
  11. grid-template-columns: 1fr;
  12. grid-template-areas:
  13. "cabecalho"
  14. "principal"
  15. "rodape";
  16. }
  17.  
  18. .cabecalho{
  19. grid-area: cabecalho;
  20. background-color: blue;
  21. color: white;
  22. display: flex;
  23. flex-direction: column;
  24. justify-content: center;
  25. align-items: center;
  26. padding-bottom: 10px;
  27. z-index: 1;
  28. box-shadow: 0px 4px 9px -2px rgba(0,0,0,0.75);
  29. }
  30.  
  31. .cabecalho > h2 {
  32. margin: 0px;
  33. font-weight: 200;
  34. font-size: 1.6rem;
  35. }
  36.  
  37. .principal{
  38. grid-area: rodape;
  39. height: calc(100vh - 180px);
  40. background-color: #f0f0f0;
  41. padding: 20px ;
  42. }
  43.  
  44. .conteudo{
  45. position: relative;
  46. height: 100%;
  47. overflow-y: scroll;
  48. background-color: whitesmoke;
  49. padding: 20px;
  50. box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.75)
  51. }
  52.  
  53. .rodape{
  54. grid-area: rodape;
  55. background-color: #ffffff;
  56. display: flex ;
  57. justify-content: center; /*alinha no meio*/
  58. align-items: center;
  59. font-size: 1.2rem;
  60. padding-right: 20px;
  61. color: #444444;
  62. position: sticky;
  63. bottom: 0px,
  64. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement