index.css 705 B

12345678910111213141516171819202122232425262728
  1. * {
  2. -webkit-tap-highlight-color: rgba(0,0,0,0); /* make transparent link selection, adjust last value opacity 0 to 1.0 */
  3. }
  4. body {
  5. -webkit-touch-callout: none; /* prevent callout to copy image, etc when tap to hold */
  6. -webkit-text-size-adjust: none; /* prevent webkit from resizing text to fit */
  7. -webkit-user-select: none; /* prevent copy paste, to allow, change 'none' to 'text' */
  8. font-family:'HelveticaNeue-Light', 'HelveticaNeue', Helvetica, Arial, sans-serif;
  9. height:100%;
  10. margin:0px;
  11. padding:0px;
  12. width:100%;
  13. text-align: center;
  14. }
  15. div {
  16. padding: 20px;
  17. }
  18. h1 {
  19. font-size:3em;
  20. }
  21. h2 {
  22. font-size:2em;
  23. }