eaaa15becdd001e74838842a6289d62836b49d3d
[atutor.git] / mods / wiki / wiki.css
1
2 /*
3    This sample stylesheet lists all possible stylesheet sections, that
4    ewiki and its plugins may output. But don't forget to also have a look
5    into the README section about this. (This also obsoletes the 'core.css'
6    sample in the fragments/css/ directory.)
7 */
8
9
10
11 /* a typical wiki page outout is separated into following classes:
12
13  .wiki.<action>.<PageName>
14     .text-head
15        h2.text-title
16     .text-body
17        <...>
18     .wiki-plugins
19        .action-links
20        .<more-plugins>
21 */
22 .wiki.edit.FrontPage {
23    background: transparent;
24 }
25
26
27
28 /*-- links to non-existent pages*/
29 .NotFound * {
30    text-decoration: none;
31    border-bottom: dashed 1px blue;
32 }
33 .NotFound a {
34    color: red;
35    border-bottom-style: none;
36 }
37