File: style.css

package info (click to toggle)
php-doc 20241205~git.dfcbb86%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 70,956 kB
  • sloc: xml: 968,269; php: 23,883; javascript: 671; sh: 177; makefile: 37
file content (194 lines) | stat: -rw-r--r-- 4,164 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
/* general body style */
body {
    background-color: #FFFFFF;
    color: #000000;
    margin: 0px 0px 0px 0px;
}

/* most of the page content use these fonts */
p, h1, h2, h3, h4, h5, td, tr, li, dt, dd,
.masterheader, .subheader, .formalhead, .seealso, .context, .codelink, .navmenu {
    font-family: Verdana, Arial, Helvetica, sans-serif;
}
/* most of the page text is 12px size */
p, h4, h5, td, tr, li, dt, dd, code,
.subheader, .formalhead, .seealso, .navmenu {
    font-size: 12px;
}
/* different size values for headings */
h1 { font-size: 18px; }
h2 { font-size: 16px; }
h3 { font-size: 14px; }

/* black is the default color for all common text parts */
p, h1, h2, h3, h4, h5, code, .masterheader, formalhead, .subheader {
    color: #000000;
}

/* margin and style settings for headers */
h2, h3, h4, h5, .formalhead {
    font-style:  normal;
    font-weight: bold;
    margin-left: 10px;
    margin-top:  20px;
}

/* SPECIAL MARGIN FOR HEADERS */
h1 {
  font-style:    normal;
  font-weight:   bold;
  color:         #ffffff;
  margin-top:    0px;
  margin-bottom: 0px;
}

/* DISPLAY FOR FUNCTION INFO */
.funcinfo {
    border: #333333;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    padding: 5px 5px 5px 10px;
    margin: 5px 20px 20px 20px;
    background-color: #f5f5f5;
}
.functable td {
    background-color: #f5f5f5;
}
.functable td.funchead {
    font-weight: bold;
    text-align: right;
}

/* SPECIAL MARKING OF PROTO PARTS */
.funcreturntype, .funcparamtype {
    font-style: italic;
}

/* GENERAL LINK COLORS */
a {
    color: #00008b;
}

/* general paragraphs in text */
p {
    line-height: 16px;
    margin: 5px 10px 5px 10px;
}

/* .examplecode is used to print out PHP code, output, etc.
   .codelink is the link to copy the code to clipboard */
.examplecode, .codelink {
    font-weight: normal;
    margin-right: 10px;
    margin-left: 10px;
}
.examplecode {
    padding: 5px 5px 5px 20px;
    background-color: #dcdcdc;
    font-family: "Courier New", Courier, mono;
}
.codelink {
    font-size: 10px;
    text-align: right;
    margin-bottom: 5px;
}

/* table rows and cells */
td, tr {
    font-style: normal;
    font-weight: normal;
}

/* colors for table rows and cells */
td { background-color: #DDDDDD; }
tr { background-color: #CCCCCC; }

/* list type elements */
li, dt { margin-bottom: 5px; }
ul, dl { 
    margin-top:    10px;
    margin-bottom: 10px;
}
dl { margin-left: 10px; }

/* for tables used to contain data */
.datatable { 
    margin-right: 20px;
    margin-left: 20px;
}

/* admonitional blocks */
.note, .warning, .caution {
    margin: 20px 20px 20px 20px;
    border: #333333;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    padding: 5px 5px 5px 10px;
}

/* color for warning and caution boxes */
.warning, .caution {
    background-color: #FFFF99
}

/* paragraphs inside notes */
.note, .warning, .caution, .note p, .warning p, .caution p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 14px;
}
    
/* see also lists, usually at the bottom of pages */
.seealso {
    font-style: normal;
    font-weight: normal;
    color: #000000;
    background-color: #DDDDFF;
    margin: 20px 0px 0px 0px;
    padding: 5px 5px 5px 10px;
}

/* user note header text */
.unheader {
    background-color: #CCCCCC;
    padding: 1px 10px 1px 5px;
    margin-bottom: 1px
}
/* user note text */
.untext {
    background-color: #DDDDDD;
    margin-top: 0px;
    padding: 2px 10px 2px 5px;
}

/* colors for color code highliting */
.cs { color: #CC0000 } /* string */
.cc { color: #b8860b } /* comment  */
.ck { color: #006600 } /* keyword  */
.cd { color: #0000CC } /* default */

/* Style elements for the context menu */
.context {
    font-size: 12px;
    color: #000000;
    margin: 2px 2px 2px 3px;
    line-height: 16px;
}
#contextMenu {
    position: absolute;
    width: 150;
    border: 1px solid #000000;
    visibility: hidden;
    background-color: #f5f5f5;
}

/* Form elements (used in context menu) */
form.thin {
    margin-bottom: 0px;
    margin-top: 0px;
}

/* Author group on frontpage */
div.authorgroup {
    text-align: center;
}