123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- body {
- margin: 0;
- background-color: #000;
- color: #fff;
- font-family: Monospace;
- font-size: 13px;
- line-height: 24px;
- }
- a {
- color: #ff0;
- text-decoration: none;
- }
- a:hover {
- text-decoration: underline;
- }
- button {
- cursor: pointer;
- text-transform: uppercase;
- }
- canvas {
- display: block;
- }
- #info {
- position: absolute;
- top: 0px;
- width: 100%;
- padding: 10px;
- box-sizing: border-box;
- text-align: center;
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none;
- z-index: 1; /* TODO Solve this in HTML */
- }
- .dg.ac {
- -moz-user-select: none;
- -webkit-user-select: none;
- -ms-user-select: none;
- user-select: none;
- z-index: 2 !important; /* TODO Solve this in HTML */
- }
|