source: trunk/themes/default/template/mail/text/html/mail-css-dark.tpl @ 25357

Last change on this file since 25357 was 25357, checked in by mistic100, 10 years ago

feature 2995: New email template
rewrite pwg_mail_group() and pwg_mail_notification_admins()
new function pwg_mail_admins()
add complete template management in pwg_mail()
TODO : font-size problem in Thunderbird

File size: 1.2 KB
Line 
1{strip}
2/* page */
3body {
4  color:#fff;
5}
6
7html, body, #bodyTable {
8  background:#111;
9}
10#contentTable {
11  width:600px;
12}
13
14/* main block */
15#header {
16  background:#444;
17  background-image:radial-gradient(ellipse at center, #555, #333);
18  border:1px solid #000;
19  border-top:4px solid #f70;
20  text-align:center;
21  text-shadow:1px 1px 0px #000;
22}
23#header #title {
24  color:#eee;
25}
26#header #subtitle {
27  color:#e06900;
28}
29#content {
30  background:#111;
31  border-width:1px;
32  border-style:solid;
33  border-color:#666 #000;
34  box-shadow:inset 0 0 20px #333;
35}
36#footer {
37  background:#333;
38  border:1px solid #000;
39  border-bottom:2px solid #f70;
40}
41
42/* links */
43a {
44  color:#f70;
45  text-decoration:none;
46}
47a:hover {
48  text-decoration:underline;
49}
50
51/* images */
52img.photo {
53  border:10px solid #666;
54}
55img.photo:hover {
56  border-color:#999;
57}
58
59h1, h2, h3, h4, h5 {
60  color:#bbb;
61}
62
63/* paragraphs */
64blockquote {
65  border-left:2px solid #aaa;
66  border-radius:2px;
67}
68
69/* tables */
70#content table td {
71  border-bottom:1px solid #999;
72}
73#content table th {
74  background:#666;
75  border-right:1px solid #aaa;
76}
77#content table tfoot td {
78  background:#444;
79  color:#aaa;
80  border-right:1px solid #aaa;
81}
82
83/* line */
84hr {
85  border-color:#555;
86}
87{/strip}
Note: See TracBrowser for help on using the repository browser.