Skip to content

Commit

Permalink
CodeDoc CSS Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ljlclark committed Dec 29, 2023
1 parent d333d5e commit 4ff25fc
Show file tree
Hide file tree
Showing 3 changed files with 293 additions and 0 deletions.
159 changes: 159 additions & 0 deletions CSS/CodeDoc.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,159 @@
/* CodeDoc.css */

/* Type Selectors */
body {
background: #f3f7ff;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 8pt;
height: 100%;
margin: 0px;
}

/* Type/Class Selectors */
div.PathText {
color: #003399;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 9pt;
/*font-weight: bold;*/
padding-left: 15px;
padding-top: 5px;
}

div.RedText {
color: red;
padding-left: 15px;
}

div.SectionContainer {
padding-left: 17px;
padding-right: 17px;
}

div.SmallText {
font-family: Arial;
font-size: 6pt;
padding-left: 15px;
}

div.Text {
padding-left: 15px;
}

div.Text2 {
padding-left: 30px;
}

div.Text3 {
padding-left: 45px;
}

table.CodeTable {
font-family: Courier New, Monospace;
font-size: 9pt;
width: 100%;
}

td.CodeTable {
background-color: #f1f7ff;
border-bottom: solid #d5d5d3 1px;
color: #000066;
padding-bottom: 5px;
padding-left: 5px;
padding-right: 10px;
padding-top: 5px;
text-align: left;
}

th.CodeTable {
background-color: #efeff7;
border-bottom: solid #c8cdde 1px;
color: #000066;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 8pt;
font-weight: bold;
padding-bottom: 1px;
padding-left: 5px;
padding-right: 5px;
padding-top: 1px;
text-align: left;
}

table.ListTable {
font-family: Courier New, Monospace;
font-size: 9pt;
margin-bottom: 0px;
padding-bottom: 5px;
padding-left: 15px;
padding-top: 5px;
width: 100%;
}

td.ListTable {
background-color: #f1f7ff;
border-bottom: solid #d5d5d3 1px;
color: #000066;
padding-bottom: 2px;
padding-top: 2px;
}

td.ListTableMissing {
background-color: #f7f7ff;
border-bottom: solid #d5d5d3 1px;
color: red;
padding-bottom: 2px;
padding-top: 2px;
}

/* Type/ID Selectors */
div#Header {
background-color: #d4dfff;
border-bottom: solid #c8cdde 1px;
height: 25px;
overflow: auto;
width: 100%;
}

div#Title {
color: #003399;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 9pt;
font-weight: bold;
padding-left: 15px;
padding-top: 5px;
}

/* Class Selectors */
.links {
margin-left:5px;
}

.page {
margin-left: 18px;
margin-right: 20px;
}

.Title1 {
color: #003399;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 9pt;
font-weight: bold;
padding-left: 15px;
padding-top: 5px;
}

/* Backward Compatible */
.title2 {
color: #003399;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 8pt;
padding-left: 15px;
padding-top: 5px;
}

.Title2 {
color: #003399;
font-family: Verdana, Tahoma, Arial, Sans-Serif;
font-size: 8pt;
padding-left: 15px;
padding-top: 5px;
}
63 changes: 63 additions & 0 deletions CSS/Sidebar.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/* SideBar.css */

/* Type Selectors */
body {
height: 100%;
margin: 0;
}

html {
height: 100%;
}

ul {
list-style-type: none;
padding-left: 15px;
}

/* Class Selectors */
.navFirst {
padding-top: 7px;
}

.navGroup {
padding-bottom: 4px;
}

.navItem {
padding-bottom: 3px;
padding-top: 2px;
}

.navItemGroup {
margin-top: 3px;
}

/* ID Selectors */
#content {
display: inline-block;
height: 100%;
overflow: hidden;
vertical-align: top;
width: 80%;
}

#contentFrame {
border: none;
height: 100%;
width: 100%;
}

#sidebar {
background-color: lightsteelblue;
display: inline-block;
height: 100%;
overflow: auto;
vertical-align: top;
width: 20%;
}

/* Combined Selectors */
#sidebar .navGroup:hover, .navItemGroup:hover, .navItem:hover {
background-color: aliceblue;
}
71 changes: 71 additions & 0 deletions CSS/Syntax.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,71 @@
/* Syntax.css */

/* Type Selectors */

/* Type/Class Selectors */

/* Class Selectors */
.attrib {
color: red;
}

.code {
font-size: 9pt;
margin-left: 5px;
}

.comment {
color: green;
}

.commonType {
color: blue;
}

.data {
color: blue;
}

.keyWord {
color: blue;
}

.libType {
color: lightseagreen;
}

.ltgt {
color: blue;
}

.modifier {
color: blue;
}

.name {
color: brown;
}

.pad1 {
padding-left: 14px;
}

.pad2 {
padding-left: 28px;
}

.refType {
color: blue;
}

.text {
color: brown;
}

.userType{
color: lightseagreen;
}

.xmlComment {
color: grey;
}

0 comments on commit 4ff25fc

Please sign in to comment.