summaryrefslogtreecommitdiff
path: root/euler/euler.css
blob: 9c209f3528388c6984714110e6b1ec6d2f5055df (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
39
40
41
.scrollable-table {
    overflow-x: auto;
    width: 100%;
}

table.progress {
    margin: 1em;
    display: inline-block;
    margin-right: 1em;
}
table.progress td {
    text-align: center;
    font-size: 14px;
    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;
}