File: layout1.css

package info (click to toggle)
snmptt 1.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,496 kB
  • sloc: perl: 6,822; sh: 184; python: 31; makefile: 12
file content (204 lines) | stat: -rw-r--r-- 4,853 bytes parent folder | download | duplicates (2)
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
195
196
197
198
199
200
201
202
203
204
/*
www.snmptt.org

The layout for this page was [borrowed|stolen|abducted] from the kind
folks at the Layout Reservoir. http://www.bluerobot.com/web/layouts/

Here's the permission notice from the page on Oct 23, 2003:

Please feel free to borrow, steal, abduct, and/or torture the documents 
contained in the Layout Reservoir. Though you need not give credit to 
BlueRobot.com, a comment in your source code would help other developers 
to find this resource. Enjoy.

Some of this layout was also [borrowed|stolen|abducted] from a kind
person (Nathan) from the Nagios site.  http://www.nagios.org
*/

body {
	margin:0px 10px 0px 10px;
	padding:0px;
	font-family:verdana, arial, helvetica, sans-serif;
        font-size: 1em;
	color:#333;
	background-color:white;
	}

h1 {
	margin:10px 0px 15px 0px;
	padding:0px;
	font-size:1.5em;
	line-height:1em;
	font-weight:900;
	color:#000;
	}

h2{
	margin:10px 0px 15px 0px;
	padding:0px;
	font-size:1.4em;
	line-height:1em;
	font-weight:900;
	color:#000;
	}

h3{
	margin:10px 0px 15px 0px;
	padding:0px;
	font-size:1.3em;
	line-height:1em;
	font-weight:900;
	color:#000;
	}

h4{
	margin:10px 0px 15px 0px;
	padding:0px;
	font-size:1.2em;
	line-height:1em;
	font-weight:900;
	color:#000;
        }	

h5{
	margin:10px 0px 15px 0px;
	padding:0px;
	font-size:1.1em;
	line-height:1em;
	font-weight:900;
	color:#000;
		}	

		
p {
	/* font:11px/20px verdana, arial, helvetica, sans-serif; */
	margin:0px 0px 1em 0px;
	padding:0px;
	line-height:125%;
	}
/* #Content>p {margin:0px;}  */
/* #Content>p+p {text-indent:30px;}  */

code {
	background-color: #eee;
	border: 1px solid #999;
	display: block;
	padding: 10px;
	overflow: auto;
  }
pre code {
	background-color: #eee;
	border: 1px solid #999;
	display: block;
	padding: 10px;
	overflow: auto;
  }

a {
	color:#09c;
	font-size:1em;
	text-decoration:none;
	font-weight:600;
	font-family:verdana, arial, helvetica, sans-serif;
	}
a:link {color:#09c;}
a:visited {color:#07a;}
a:hover {background-color:#eee;}

/*
Moved to snmptt.md for Requiremens section so that it doesn't conflict with snmptt.org web page
table {
	border-collapse: collapse;
	width: 70%;
  }

  td, th {
	border: 1px solid #aaaaaa;
	text-align: left;
	padding: 2px;
	max-width: 50em;
  }

  tr:nth-child(even) {
	background-color: #dddddd;
  }
*/

#skip {
        display:none;
}

#Header {
        font-family: verdana,arial,serif; 
	font-size: 1.5em; 
	font-weight: bold;  
	margin:50px 0px 10px 0px;
	padding:10px 0px 10px 20px;
	/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
	height:33px; /* 14px + 17px + 2px = 33px */
	border-style:solid;
	border-color:black;
	border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
	line-height:11px;
	background-color:#eee;

	/* Ugly brilliant hack removed - messed up Konqueror.  Just set height anyways otherwise ie6 messed up */
	height:14px; /* the correct height */
	}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct 
length values to user agents that exhibit the parsing error exploited above yet get 
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:14px;}

#Content {
	margin:0px 50px 0px 200px;
	padding:10px;
	}

#LeftSide {
  position:absolute;
  top:100px;
  left:20px;
  width:172px;
  line-height:17px;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity. 
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it. 
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style 
declaration. The incorrect IE5/Win value is above, while the correct value is 
below. See http://glish.com/css/hacks.asp for details. */
  voice-family: "\"}\"";
  voice-family:inherit;
  width:150px;
}
/* Again, "be nice to Opera 5". */
body>#LeftSide {width:150px;}

#Menu {
  padding:10px;
  background-color:#eee;
  border:1px dashed #999;
  font-size: 0.85em;
  line-height:1.4em;
}
/* Again, "be nice to Opera 5". */
body>#Menu {width:150px;}

#ModificationDate {
	margin:0px 50px 20px 200px;
	}



.Copyright { font-family: verdana,arial,serif; font-size: 1em;}
.Email { font-family: verdana,arial,serif; font-size: 0.85em;}

.NewsItem { font-family: verdana,arial,serif; font-size: 1em; }
.NewsItemUrgent { font-family: verdana,arial,serif; font-size: 1em; background-color: #ccff99;}
.NewsItemDate { font-family: verdana,arial,serif; font-size: 1em; font-weight: bold; }

.SectionTitle { font-family: verdana,arial,serif; font-size: 1.2em; font-weight: bold; text-decoration: underline;}
.SectionBody { font-family: verdana,arial,serif; font-size: 1em; }

.ModificationDate { font-family: verdana,arial,serif; font-size: 0.9em; }