source: projects/web/trunk/css/docs.css @ 8397

Revision 8397, 2.2 KB checked in by daisuke, 10 years ago (diff)

update to new web design

Line 
1/* css for documentations */
2
3@import "common.css";
4@import "gnome.css";
5
6.important {
7        width: 90%;
8        margin: auto;
9        margin-top: 5px;
10        padding: 3px;
11        border: solid 3px #666699;
12        border-style: solid;
13        border-radius: 6px;
14        -moz-border-radius: 6px;
15        -webkit-border-radius: 6px;
16}
17
18.important h3 {
19        border-bottom: none;
20        font-weight: normal;
21        background: url(/images/important-icon.png) no-repeat 0 1px;
22        padding-left: 26px;
23}
24
25.warning {
26        font-size: smaller;
27        width: 90%;
28        margin: auto;
29        margin-top: 5px;
30        padding: 3px;
31        border: solid 2px #AA6666;
32        border-style: solid;
33        border-radius: 6px;
34        -moz-border-radius: 6px;
35        -webkit-border-radius: 6px;
36}
37
38.warning h3.title {
39        background: url(/images/warning-icon.png) no-repeat 0 1px;
40        padding-left: 26px;
41}
42
43.note {
44        text-indent: 0;
45        width: 90%;
46        margin: auto;
47        margin-top: 5px;
48        font-size: smaller;
49        padding: 3px;
50        border: solid 1px #666699;
51        border-radius: 6px;
52        -moz-border-radius: 6px;
53        -webkit-border-radius: 6px;
54}
55
56.note h3 {
57        background: url(/images/information-icon.png) no-repeat 0 1px;
58        padding-left: 26px;
59}
60
61dt span.part, dt span.preface {
62        font-size: 16px;
63}
64
65dt span.chapter {
66        font-size: 14px;
67}
68
69dt span.sect1 {
70        font-weight: normal;
71}
72
73.list-of-figures dt, .list-of-tables dt, .list-of-examples dt {
74        font-weight: normal;
75}
76
77.guimenu {
78        color: MenuText;
79        background-color: Menu;
80        border-style: outset;
81        border-width: 2px;
82}
83
84.guimenuitem {
85        color: MenuText;
86        background-color: Menu;
87        border-style: outset;
88        border-width: 2px;
89}
90
91.guibutton {
92        color: ButtonText;
93        background-color: ButtonFace;
94        border-style: outset;
95        border-color: ButtonShadow;
96        border-width: 2px;
97}
98
99.keycap {
100        margin: 3px 3px; 
101        padding: 1px 5px 1px 5px;
102        border-width: 1px 2px 2px 1px; 
103        border-style: solid; 
104        border-color: #999; 
105        background-color: #F5F5F5; 
106        font-family: monospace;
107        border-radius: 2px;
108        -moz-border-radius: 2px;
109        -webkit-border-radius: 2px;
110}
111
112.table  .keycap {
113        border-style: none;
114}
115
116.table {
117        margin-top: 20px;
118        margin-bottom: 20px;
119}
120
121.figure {
122        margin-top: 20px;
123        margin-bottom: 20px;
124}
125
126.graphic {
127        margin-top: 10px;
128        margin-bottom: 10px;
129}
130.graphic img {
131        max-width: 100%;
132}
133
134p.para {
135        margin-top: 10px;
136}
Note: See TracBrowser for help on using the repository browser.