main.css 822 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. :focus {-moz-outline-style:none;}
  2. html, body {margin: 0; padding:0;}
  3. html {
  4. overflow: auto;
  5. height: 100%;
  6. }
  7. body {
  8. height: 100%;
  9. font-family: 'Exo 2', Arial, sans-serif;
  10. font-weight: bold;
  11. text-align: center;
  12. /*min-width: 746px;
  13. min-height: 746px;*/
  14. font-size: 16px;
  15. color: #fff;
  16. overflow: hidden;
  17. -webkit-user-select: none;
  18. -moz-user-select: none;
  19. -ms-user-select: none;
  20. -o-user-select: none;
  21. user-select: none;
  22. }
  23. .svg {
  24. width: auto;
  25. height: 100%;
  26. }
  27. text {
  28. cursor: default;
  29. }
  30. .card text {
  31. cursor: inherit;
  32. }
  33. @media all and (max-width: 1311px) {
  34. .svg {
  35. width: 100%;
  36. height: auto;
  37. }
  38. }
  39. @media all and (max-height: 746px) {
  40. .svg {
  41. width: auto;
  42. height: 100%;
  43. }
  44. }