blob: 37034dd763fef1a22eff3d6cdeb2abdd7ea86ff9 (
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
42
43
44
45
46
47
48
49
50
51
52
|
.dashboard {
padding: 1.5rem;
}
.project-top {
padding: 0 1rem 1rem 1rem;
}
.project-top h1 {
margin: 0;
}
.dashboard .project-entry {
padding: 1rem;
margin: 0 0 1rem 0;
background: #111;
}
.dashboard .episode-entry {
margin-bottom: 0.5rem;
}
.dashboard .project-entry .row.project-heading {
margin-bottom: 1rem;
}
.dashboard h2 {
display: inline-block;
margin: 0;
}
.dashboard .title {
width: 25rem;
color: #fff;
text-overflow: ellipsis;
white-space: pre;
overflow: hidden;
}
.dashboard .row {
margin-bottom: 0.25rem;
align-items: center;
}
.dashboard .links a {
margin-right: 0.5rem;
text-decoration: none;
}
.dashboard .links a:hover {
text-decoration: underline;
}
.dashboard .published {
color: #888;
margin-left: 0.5rem;
}
.dashboard i {
color: #bbb;
}
|