File: style.css

package info (click to toggle)
sambamba 1.0.1%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,900 kB
  • sloc: javascript: 552; sh: 220; python: 166; ruby: 147; makefile: 104; lisp: 85
file content (169 lines) | stat: -rw-r--r-- 4,444 bytes parent folder | download
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
/* This file is a part of CanDyDOC fileset.
   File is written by Victor Nakoryakov and placed into the public domain.

   This file is main CSS file of CanDyDOC. You may adjust some part of
   parameters to control how result documentation would looks like. See
   further documentation for details. */



/* This controls how background would looks like and
   sets some document-scope defaults. */
body 
{
	/* These parameters control default font. */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #666666;
	
	/* These control look of background. Note that you have to use
       fixed background to keep documentation good-looking in
       IE6 and earlier. Otherwise whole *explorer* will jerk while
       scrolling. If you do not want to use background at all use
       some invalid url, e.g. url(foo). */
	background-color: #e6fcea;
	background: url(img/bg.gif) fixed;
	
	/* Don't touch. Necessary for IE6 and earlier. */
	height: 100%;	
}



/* Style applied to all tables. Actualy there are two: one table is
   that contains contant and footer with CanDyDOC logo, and others
   are that contains functions' parameters description. */
table 
{
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	color: #666666;
	text-align: justify;
}


/* Style used for all hyperlinks. */
a:link {  color: #009900; text-decoration: none }
a:visited {  color: #009999; text-decoration: none }
a:hover {  color: #0033cc; text-decoration: none }
a:active {  color: #0033cc; text-decoration: none }

/*
table.matrix 
{
	border-left: double 3px #666666;
	border-right: double 3px #666666;
	margin-left: 3em;
}
*/

/* Style appled to declarations. E.g. 'void foo(int a, float b);' */
span.decl { font-size: 10pt; font-weight: bold; color: #000000; text-align: left }
/* Style appled to current declaration's symbol. E.g. 'foo' in 'void foo(int a, float b);' */
span.currsymbol { font-size: 12pt; color: #009900 }
/* Style appled to function's parameters. E.g. 'a' and 'b' in 'void foo(int a, float b);' */
span.funcparam  { font-style: italic; font-weight: normal; color: #331200 }

/* Style for div that actualy contains documenation. */
#content
{
	padding-right: 8px;
	position: absolute;
	left: 245px;
	top: 8px;
	text-align: justify;
}

/* Style for table that is inside div considered above. Contains documentaton
   itself and footer with CanDyDOC logo. */
table.content
{
	margin-bottom: 8px;
	border-spacing: 0px;
	border-collapse: collapse;
	background-color: #ffffff;
}

/* Style for cell of above considered table that contains documentation itself. */
#docbody
{
	padding: 8px 20px 8px 20px;
	border: solid 1px #009900;
}

/* Style for cell that contains CanDyDOC logo. */
#docfooter
{
	height: 16px;
	background-color: #ddeedd;
	padding: 0px 8px 0px 8px;
	border: solid 1px #009900;
}

/* Style applied to currently active tab of explorer window. */
span.activetab
{
	background-color: #0033cc;
	border-top: solid 2px #009900;
	color: #ffffff;
	font-weight: bold;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 1px;
	margin-right: 1px;
}

/* Style applied to currently inactive tab of explorer window. */
span.inactivetab
{
	background-color: #000066;
	color: #cccccc;
	font-weight: normal;
	padding-left: 4px;
	padding-right: 4px;
	padding-top: 0px;
	margin-right: 1px;
}

/* Style applied to div that contains tabs of explorer. Note that if
   you want to change it's position you have to change position of
   #explorerclient, #content and corresponding values in ie56hack.css */
#tabarea
{
	position: fixed;
	top: 8px;
	width: 205px;
	height: 16px;
	cursor: default;
}


/* Style applied to div that contains tree in explorer. Note that if
   you want to change it's position you have to change position of
   #tabarea, #content and corresponding values in ie56hack.css */
#explorerclient 
{
	position: fixed;
	top: 24px;
	bottom: 8px;
	width: 205px;
	overflow: auto;
	background-color: #fcfffc;
	border: solid 2px #0033cc;
	padding: 4px;
	cursor: default;
	color: Black;
}

/* Following 3 styles control appearance of marker that appears
   if you click some entity in outline window. */
div.markertop	{ border-left: solid 2px #0033cc;}
div.markermiddle{ border-left: dotted 2px #0033cc;}
div.markerbottom{ border-left: dotted 2px #66cc66;}

/* Style applied to preformated text used to show examples. */
pre.d_code
{
	border: dotted 1px #9c9;
	background-color: #eeffee;
}