api.css 2.06 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
pre {
    color: #000000;
    background-color: #FFF5E6;
    font-family: "courier new", "times new roman", monospace;
    line-height: 1.3em;
    /* Put a nice border around it. */
    padding: 1px;
    width: 90%;
    /* Don't wrap its contents, and show scrollbars. */
    /* white-space: nowrap;*/
    overflow: auto;
    /* Stop after about 24 lines, and just show a scrollbar. */
    /* max-height: 24em; */
    margin: 5px;
    padding-left: 20px;
    border: 1px solid #FFE6BF;
    border-left: 6px solid #FFE6BF;
}

20 21 22 23 24 25
code {
    color: #000000;
    background-color: #FFF5E6;
    padding: 1px;
}

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
div.code {
	display: none;
    color: #000000;
    background-color: #FFF5E6;
    font-family: "courier new", "times new roman", monospace;
    line-height: 1.3em;
    /* Put a nice border around it. */
    padding: 1px;
    width: 90%;
    /* Don't wrap its contents, and show scrollbars. */
    /* white-space: nowrap;*/
    overflow: auto;
    /* Stop after about 24 lines, and just show a scrollbar. */
    /* max-height: 24em; */
    margin: 5px;
    padding-left: 20px;
    border-left: 6px solid #FFE6BF;
}

table.summaryTable {
	background: #E6ECFF;
	border-collapse: collapse;
	width: 100%;
}

table.summaryTable th, table.summaryTable td {
	border: 1px #BFCFFF solid;
	padding: 0.2em;
}

table.summaryTable th {
	background: #CCD9FF;
	text-align: left;
}

#nav {
	padding: 3px;
	margin: 0 0 10px 0;
	border-top: 1px #BFCFFF solid;
}

#classDescription {
	padding: 5px;
	margin: 10px 0 20px 0;
	border-bottom: 1px solid #BFCFFF;
}

.detailHeader {
	font-weight: bold;
	font-size: 12pt;
	margin: 30px 0 5px 0;
	border-bottom: 1px solid #BFCFFF;
}

.detailHeaderTag {
	font-weight: normal;
	font-size: 10pt;
}

.signature, .signature2 {
	padding: 3px;
    color: #000000;
    font-family: "courier new", "times new roman", monospace;
    line-height: 1.3em;
}

.signature {
	margin: 10px 0 10px 0;
	background: #E6ECFF;
	border: 1px #BFCFFF solid;
}

.paramNameCol {
	width: 12%;
	font-weight: bold;
}

.paramTypeCol {
	width: 12%;
}

.sourceCode {
	margin: 5px 0;
	padding:5px;
	background:#FFF5E6;
}