summaryrefslogtreecommitdiff
path: root/euler/euler.css
blob: cd2a021238c340e2e2a695a8f1b7055649220978 (plain)
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
.scrollable-table {
    overflow-x: auto;
    width: 100%;
}

table.progress {
    margin: 1em;
}
table.progress td {
    text-align: center;
    border: 1px solid #000000;
    padding: 0;
    width: 2.2em;
}
table.progress td * {
    display: block;
    border: 2px solid transparent;
    width: 2em;
}
table.progress a {
    color: inherit;
    text-decoration: none;
}
table.progress a:hover {
    border: 2px solid #ff6347;
}

td.open {
    background: lightgrey;
    color: black;
    padding: 0 0.2em;
}
td.completed {
    background: green;
    color: white;
    padding: 0 0.2em;
    font-weight: bold;
}