source: remit/media/style/style.css @ 0f53aae

client
Last change on this file since 0f53aae was 0f53aae, checked in by Alex Dehnert <adehnert@…>, 15 years ago

Generally improve user account display

When testing, it can be painful to figure out why you can't access pages
because there's no good way to log out or see what account you're using.
This tries to change that, in a way that can also be vaguely useful for
normal users.

  • Property mode set to 100644
File size: 1.2 KB
Line 
1tr.sect-head td, tr.sect-head th
2{
3    padding-top: 1em;
4    text-decoration: underline;
5}
6table.pretty-table
7{
8    border-collapse: collapse;
9}
10table.pretty-table th, table.pretty-table td
11{
12    border: 1px solid black;
13    padding: 2px;
14}
15table.pretty-table th
16{
17    background: #99F;
18}
19ul.errorlist
20{
21    color: red;
22}
23
24div.messagebox
25{
26    padding: 0 10px 10px 10px;
27    margin: 2em 0;
28    border: 1px solid;
29    width: 50%;
30}
31div.messagebox > h3
32{
33    margin: 0 -10px;
34    padding: 2px 10px;
35    margin-bottom: 1em;
36}
37
38div.infobox
39{
40    background-color: #afa;
41    border-color: #0f0;
42}
43
44div.infobox h3 {
45    background: #6f6;
46}
47
48div.warnbox
49{
50    background-color: #ffdf60;
51    border-color: #ffbf00;
52}
53
54div.warnbox h3 {
55    background: #faba00;
56}
57
58div.errorbox
59{
60    background-color: #faa;
61    border-color: red;
62}
63
64div.errorbox h3 {
65    background: #f88;
66}
67
68.request-status-approved
69{
70    background: #6F6;
71}
72.request-status-pending
73{
74    background: #FABA00;
75}
76.request-status-rejected
77{
78    background: #F88;
79}
80
81table.money-table td
82{
83    text-align: right;
84}
85table.money-table th
86{
87    white-space: pre-wrap;
88    text-align: left;
89    font-weight: normal;
90}
91
92span.username
93{
94    font-family: "Courier", monospace;
95}
Note: See TracBrowser for help on using the repository browser.