summaryrefslogtreecommitdiffstats
path: root/front/style.css
blob: 3ef2ea162cc3d4f2759513a6dba46ad3f29ed2d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@font-face {
    font-family: 'Anka/Coder';
    src: url("/AnkaCoderCondensed/AnkaCoder-C87-r.ttf") format('truetype');
}
@font-face {
    font-family: 'Anka/Coder';
    src: url("/AnkaCoderCondensed/AnkaCoder-C87-i.ttf") format('truetype');
    font-style: italic;
}
@font-face {
    font-family: 'Anka/Coder';
    src: url("/AnkaCoderCondensed/AnkaCoder-C87-b.ttf") format('truetype');
    font-weight: bold;
}
@font-face {
    font-family: 'Anka/Coder';
    src: url("/AnkaCoderCondensed/AnkaCoder-C87-b.ttf") format('truetype');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: "Anka/Coder";
}

table thead td {
    font-weight: bold;
}

table td {
    padding: 0 0.4em;
    white-space: nowrap;
    vertical-align: top;
}

body {
    background-color: #111;
    color: #eee;
}
span.i {
    color: #1d1;
}
span.d {
    color: #d11;
}
tr:hover td {
    background-color: #222;
}

#settings {
    border: 0;
    outline: none;
    background-color: transparent;
}

.a-button {
    color: cyan;
    text-decoration: none;
    cursor: pointer;
}

.a-button:hover {
    text-decoration: underline;
}

.a-button-disabled {
    color: gray;
    cursor: default;
}

.a-button-disabled:hover {
    text-decoration: none;
}

.input-todo {
    background-color: inherit;
    font-family: inherit;
    font-size: inherit;
    outline: none;
    color: #eee;
    border: solid 1px #444;
    padding: 3px;
    border-radius: 2px;
    margin: 10px;
}