Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. * {
  2. margin: 0;
  3. padding: 0;
  4. box-sizing: border-box;
  5. }
  6.  
  7. html, body {
  8. height: 100%;
  9. }
  10.  
  11. html {
  12. font-size: 10px;
  13. font-family: Arial, Helvetica, sans-serif;
  14. background: #afccdb;
  15. }
  16.  
  17. h2 {
  18. font-size: 1.8rem;
  19. text-align: center;
  20. margin-bottom: 2.4rem;
  21. }
  22.  
  23. p {
  24. margin-bottom: 2.0rem;
  25. }
  26.  
  27. body > header {
  28. position: fixed;
  29. top: 0;
  30. left: 0;
  31. right: 0;
  32. height: 46px;
  33. background: #FFF;
  34. border-bottom: 3px solid rgba(0,0,0,0.05);
  35. }
  36.  
  37. body > main {
  38. width: 100%;
  39. padding: 10px;
  40. margin-top: 46px;
  41. }
  42.  
  43. .tile {
  44. padding: 10px 12px;
  45. background: #FFF;
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement