]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - phpwiki.css
Fixed some bugs in the page source in the "Emphasis" section.
[SourceForge/phpwiki.git] / phpwiki.css
1 /*
2   Classes:
3
4   wikitext 
5   
6   wikiword   - A wiki page name
7   rawurl     - A raw url (like http://some.where.com/howdy.jpg)
8   interwiki  - An interwiki name
9   
10   linkurl    - A link to an external URL
11   interwikilink - A link to an external wiki
12   wikilink   = A link to an existing page 
13   wikiunknown = A link to a non-existing page
14   wikiaction  - A link which to an action  (edit, diff, info...)
15   wikiadmin   - A link to an admin action  (lock, remove ...)
16   wikiunsafe  - A link to an admin action which is located on an unlocked page.
17 */
18
19 TABLE.outer { background-color: black; }
20 TABLE.inner { background-color: white; }
21
22 /*
23  * WikiWords in sans-serif
24  */
25 .wikiword
26 {
27     font-family: avantgarde, helvetica, sans-serif;
28
29 PRE .wikiword, 
30 TT .wikiword
31 {
32     font-family: monospace;
33 }
34 H1 .wikiword
35 {
36     font-size: large;
37 }
38 SMALL .wikiword
39 {
40     font-size: small;
41 }
42
43 .interwiki
44 {
45     font-family: zapf chancery, cursive;
46 }
47
48
49
50 /*
51  * Raw URLS in smaller font
52  */
53 .rawurl
54 {
55     font-family: serif;
56     font-size: smaller;
57 }
58
59
60 /*
61  * No underline for wikilinks.
62  */
63 .wikilink,
64 .wikiunknown,
65 .wikiunknown U,
66 .wikiaction,
67 .wikiadmin,
68 .interwikilink,
69 .footnote A,    
70 .footnote-rev    
71 {
72   text-decoration: none;
73   /* color: #600; */
74 }
75 .wikiunknown,
76 .wikiunknown U
77 {
78    color: #600;
79 }
80
81
82 /*
83  * Different backgrounds depening on link type.
84  */
85 /*
86 .wikilink
87 {
88     background-color: #ddc;
89 }
90 */
91 .wikiaction,
92 .wikiaction INPUT,
93 .wikiaction TABLE
94 {
95     background-color: #ddf;
96 }
97 .wikiadmin,
98 .wikiadmin INPUT,
99 .wikiadmin TABLE
100 {
101     background-color: #fdd;
102 }
103 .wikiunsafe
104 {
105     background-color: #eee;
106 }
107
108 .wikilink:link
109 {
110   /* color: #c00; */
111 }
112 .wikilink:visited,
113 {
114   /* color: #600; */
115 }
116
117
118 /*
119  * Special colors for the '?' after unknown wikiwords.
120  */
121 A.wikiunknown
122 {
123     color: #fffff0;
124     background-color: #663333;
125     font-family: avantgarde, helvetica, sans-serif;
126     text-decoration: none;
127 }
128 PRE A.wikiunknown,
129 TT A.wikiunknown
130 {
131     font-family: monospace;
132 }
133
134
135 /* For emacs users
136  *
137  * Local Variables:
138  * mode: c
139  * c-file-style: cc-mode
140  * End:
141  */