/* Reversed
 * Copyright (c) 2015 Mark Vasilkov (https://github.com/mvasilkov)
 * License: MIT */

p, .t {
    color: #fff;

    /* Fonts that support box drawing characters. */
    /* Bad news about Android: there are none. Android sucks. */
    font: 15px/1 'DejaVu Sans Mono', 'FreeMono', 'Courier New', 'Consolas', 'PT Mono', monospace;
    /* Liberation Mono works, but I don't like it. */
    /* Lucida Console: same thing. */

    /* -webkit-font-smoothing: antialiased; */
    margin: 0;
    position: relative;
    -webkit-transition: -webkit-transform 25ms;
    transition: transform 25ms;
    white-space: pre;
}

/* Android */
.and p, .and .t {
    font-family: 'Droid Sans Mono', monospace;
}

p.a1, p.a2, p.a4, p.a5 {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
}

p .b {
    display: none;
}

#p {
    position: absolute;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-user-select: none;
}
