~widelands-dev/widelands-website/trunk

« back to all changes in this revision

Viewing changes to media/css/wiki.css

  • Committer: Holger Rapp
  • Date: 2009-03-15 20:19:52 UTC
  • mto: This revision was merged to the branch mainline in revision 64.
  • Revision ID: sirver@kallisto.local-20090315201952-eaug9ff2ec8qx1au
Fixed a bug with broken notification support

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/**************************/
2
 
/* General Style elements */
3
 
/**************************/
4
 
.wiki_article h1 {
5
 
    font-size: 2.5em;
6
 
    margin: 10px 0px;
7
 
}
8
 
.wiki_article h2 {
9
 
    font-size: 2em;
10
 
    margin: 25px 3px 10px;
11
 
    line-height: 70%;
12
 
}
13
 
.wiki_article h3 {
14
 
    font-size: 1.4em;
15
 
    margin: 5px 5px;
16
 
}
17
 
.wiki_article h4 {
18
 
    font-size: 1.30em;
19
 
    margin: 5px 10px;
20
 
    text-decoration: underline;
21
 
}
22
 
.wiki_article h5 {
23
 
    font-size: 1.2em;
24
 
    margin: 5px 10px;
25
 
    text-decoration: underline;
26
 
    font-style: italic;
27
 
}
28
 
.wiki_article h6 {
29
 
    font-size: 1.1em; 
30
 
    margin: 5px 10px;
31
 
    font-style: italic;
32
 
}
33
 
 
34
 
.wiki_article h1:first-letter,.wiki_article h2:first-letter,.wiki_article h3:first-letter {
35
 
     vertical-align: baseline;
36
 
         color: #7070FF;
37
 
         font-size: 180%;
38
 
         font-family: Cretino, "Bitstream Vera Serif", serif;
39
 
         font-weight: bold;
40
 
}
41
 
.wiki_article h3:first-letter {
42
 
    color: rgb(156,156,86);
43
 
}
44
 
 
45
 
.wiki_article p {
46
 
    margin: 7px 10px; 
47
 
}
48
 
 
49
 
 
50
 
/***********/
51
 
/* History */
52
 
/***********/
 
1
 
53
2
.history_list {
54
3
    width: 100%;
55
4
}
56
5
 
57
 
/******************/
58
 
/* Edit Wiki Page */
59
 
/******************/
60
 
#edit_wiki_page_form {
61
 
    width: 100%;
62
 
}
63
 
#edit_wiki_page_form th {
64
 
    background: None;
65
 
    margin-top: 15px;
66
 
    width: auto;
67
 
}
68
 
#edit_wiki_page_form #id_title,#id_comment {
69
 
    width: 100%;
70
 
}
71
 
    
72
6
#id_content {
73
7
   width: 100%;
74
8
   height: 400px;
75
9
}
76
 
#id_summary {
77
 
   width: 100%;
78
 
   height: 100px;
79
 
}
80
 
 
81
 
/*************/
82
 
/* Changeset */
83
 
/*************/
84
 
 
85
 
.changeset_content {
86
 
        line-height: 120%;
87
 
        border: 0px;
88
 
        padding: 2px;
89
 
        padding-top: 5px;
90
 
        padding-left: 15px;
91
 
        background-color: #3F3F3F;
92
 
        background: url(../img/background-3F3F3F.png);
93
 
}
94
 
 
95
 
 
96