summaryrefslogtreecommitdiff
path: root/export/styles.css
blob: 51f797e968678c7808848056810bda1a1da95eb0 (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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
.container {
    border: 1px solid #aaa;
    margin: 1em;
    margin-top:0;
    margin-bottom:-1px;
    padding: 1em;
 /*   border-radius: 0.5em;*/
    background-color: #eee;
    max-width: 35em;
    padding-bottom: 0;
}

header {
    border: 1px solid #aaa;
    padding: 1em;
    padding-top: 0.1em;
    background-color: #eee;
    margin: 0;
    margin-bottom: 1em;
    max-width: 40em;
}

.avatar {
    height: 3em;
    float: left;
    margin-right: 0.7em;
}


.subject {
    color: #0a0;
}

body {
    font-family: sans-serif;
    margin: 0;
}

.container:first-of-type {
    border-radius: 0.5em 0.5em 0 0 ;
}

.container:last-of-type {
    border-radius: 0 0 0.5em 0.5em;
}

table tr:nth-child(odd) {
  background: #eed;
}

.date, thead td {
    border-bottom: 1px solid #aaa;
    background-color: #dde;
    padding: 0.5em;
    margin: -1em;
    margin-bottom: 0em;
    height: 3em;
}

thead td {
    padding: 0.5em;
}
td {
    padding: 0.3em;
    overflow: ellipsis;
}

tr.closed {
    background: #dee;
}
table tr.closed:nth-child(odd) {
  background: #cdd;
}
table {
    border: 1px solid #aaa;
    padding: 0;
}

img {
    image-rendering: -moz-crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
}

.status-header {
    background-color: #ddd;
}

.op {
    background-color: #ded;
}

.dev {
    background-color: #edd;
}

.opdev {
    background-color: #ede;
}

.container:first-of-type .date {
    border-radius: 0.5em 0.5em 0 0;
}

.reply {
    font-family: monospace;
    white-space: pre-wrap;
    counter-reset: line;
}
.reply p {
    counter-increment: line;
    margin: 0.2em;
    margin-left: 3em;
    background-color: #ddd;
}
.reply p::before {
    content: "" counter(line) "";
/*    font-size: 0.7em;*/
    display: inline-block;
    width: 2em;
    margin-right: 1em;
    text-align: right;
    margin-left: -3em;
    color: #a00;
}

table {
    margin: 1em
}