| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- root {
- display: block;
- }
- body{
- background-color: #000;
- background-repeat: repeat-x;
- background-position: top;
- }
- *, *:before, *:after {
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- }
-
- input, input:before, input:after {
- -webkit-user-select: initial;
- -khtml-user-select: initial;
- -moz-user-select: initial;
- -ms-user-select: initial;
- user-select: initial;
- }
- ::selection { background: transparent;color:inherit; }
- ::-moz-selection { background: transparent;color:inherit; }
- #canvas{
- position: fixed;
- }
- canvas {
- image-rendering: optimizeSpeed;
- image-rendering:-o-crisp-edges;
- image-rendering:-webkit-optimize-contrast;
- -ms-interpolation-mode: nearest-neighbor;
- -ms-touch-action: none;
- }
- .ani_hack{
- -webkit-perspective: 1000;
- -webkit-backface-visibility: hidden;
-
- -webkit-touch-callout: none;
- -webkit-user-select: none;
- -khtml-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- outline: none;
- -webkit-tap-highlight-color: transparent; /* mobile webkit */
- }
- /***************FONTS*******************/
- @font-face {
- font-family: 'katanaregular';
- src: url('katanf-webfont.eot');
- src: url('katanf-webfont.eot?#iefix') format('embedded-opentype'),
- url('katanf-webfont.woff') format('woff'),
- url('katanf-webfont.ttf') format('truetype'),
- url('katanf-webfont.svg#katanaregular') format('svg');
- font-weight: normal;
- font-style: normal;
- }
- .check-fonts{
- position: fixed;
- opacity:0;
- }
- .check-font-1{
- font-family: 'katanaregular';
- }
|