Guest User

Untitled

a guest
Feb 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. /**
  2. * Vertical centering - absolute positioning method
  3. */
  4.  
  5. main {
  6. position: absolute;
  7. top: 50%;
  8. left: 50%;
  9. transform: translate(50%, 50%);
  10.  
  11. padding: 1em 1.5em;
  12. box-sizing: ;
  13. background: #655;
  14. color: white;
  15. text-align: center;
  16. }
  17.  
  18. h1 {
  19. margin: 0 0 .2em;
  20. font-size: 150%;
  21. }
  22.  
  23. p {
  24. margin: 0;
  25. }
  26.  
  27. body {
  28. background: #fb3;
  29. font: 100%/1.5 sans-serif;
  30. }
Add Comment
Please, Sign In to add comment