PXE Server common.css: Difference between revisions

From Alteeve Wiki
Jump to navigation Jump to search
Created page with '{{header}} This is the <span class="code">index.html</span> page I use on my PXE server. It's likely not w3c compliant, it uses tables and is flawed in many other ways. It's…'
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
{{header}}
{{header}}


This is the <span class="code">index.html</span> page I use on my PXE server. It's likely not [[w3c]] compliant, it uses tables and is flawed in many other ways. It's provided as a reference or, perhaps, a lesson in bad [[HTML]] style.
This is the <span class="code">common.css</span> I use on my [[Setting Up a PXE Server in Fedora|PXE server]].


* Direct link: [https://alteeve.com/files/pxe/html/common.css common.css].
* Direct link: [https://alteeve.com/files/pxe/html/common.css common.css].

Latest revision as of 01:34, 7 November 2010

 Alteeve Wiki :: PXE Server common.css

This is the common.css I use on my PXE server.

/* Default style for all text. */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

/* Links */
a {
	color: #7f117f;
	cursor: pointer;
	text-decoration: none;
	background: none;
}

a:hover
{
 	text-decoration: underline;
	/* text-decoration: none; */
}

/* Table formatting. */
table {
	font-size: 14px;
	font-family: Arial, Helvetica, Verdana, Sans-Serif;
	border-spacing: 0px;
	margin: auto;
}

td.title {
	border: 0px dotted #7f7f7f;
	text-align: center;
	font-size: 18px;
	background: #efefef;
	vertical-align: top;
	color: #22628B;
}

td.input {
	border: 0px solid #7f7f7f;
	text-align: center;
}

td, th {
	border-right: 1px dotted #7f7f7f;
	border-bottom: 1px dotted #7f7f7f;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000000;
}

.table_top {
	border-top: #7f7f7f dotted 1px;
	border-left: #7f7f7f dotted 1px;
	font-weight: bold;
}

.table_left {
	border-left: #7f7f7f dotted 1px;
}

.table_clear {
	border-top: 0px;
	border-bottom: 0px;
	border-left: 0px;
	border-right: 0px;
}

/* General Formatting */
.column_head {
	font-style: italic;
	text-align: center;
}

 

Any questions, feedback, advice, complaints or meanderings are welcome.
Alteeve's Niche! Alteeve Enterprise Support Community Support
© 2025 Alteeve. Intelligent Availability® is a registered trademark of Alteeve's Niche! Inc. 1997-2025
legal stuff: All info is provided "As-Is". Do not use anything here unless you are willing and able to take responsibility for your own actions.