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

Revision 1564, 2.0 KB checked in by daisuke, 14 years ago (diff)

move pre.screen to main css

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