/e_desk/Styles.css
CSS | 163 lines | 137 code | 25 blank | 1 comment | 0 complexity | 8301b3b0ca9bdf61e7eed9ef3349dc82 MD5 | raw file
1/* Default CSS Stylesheet for a new Web Application project */ 2 3BODY 4{ 5 BACKGROUND-COLOR: white; 6 FONT-FAMILY: Verdana, Helvetica, sans-serif; 7 FONT-SIZE: .8em; 8 FONT-WEIGHT: normal; 9 LETTER-SPACING: normal; 10 TEXT-TRANSFORM: none; 11 WORD-SPACING: normal 12} 13 14H1, H2, H3, H4, H5, TH, THEAD, TFOOT 15{ 16 COLOR: #003366; 17} 18H1 { 19 font-family: Verdana, Arial, Helvetica, sans-serif; 20 font-size: 2em; 21 font-weight: 700; 22 font-style: normal; 23 text-decoration: none; 24 word-spacing: normal; 25 letter-spacing: normal; 26 text-transform: none; 27 } 28 29H2 { 30 font-family: Verdana, Arial, Helvetica, sans-serif; 31 font-size: 1.75em; 32 font-weight: 700; 33 font-style: normal; 34 text-decoration: none; 35 word-spacing: normal; 36 letter-spacing: normal; 37 text-transform: none; 38 } 39 40H3 { 41 font-family: Verdana, Arial, Helvetica, sans-serif; 42 font-size: 1.58em; 43 font-weight: 500; 44 font-style: normal; 45 text-decoration: none; 46 word-spacing: normal; 47 letter-spacing: normal; 48 text-transform: none; 49 } 50 51H4 { 52 font-family: Verdana, Arial, Helvetica, sans-serif; 53 font-size: 1.33em; 54 font-weight: 500; 55 text-decoration: none; 56 word-spacing: normal; 57 letter-spacing: normal; 58 text-transform: none; 59 } 60 61H5, DT { 62 font-family: Verdana, Arial, Helvetica, sans-serif; 63 font-size: 1em; 64 font-weight: 700; 65 font-style: normal; 66 text-decoration: none; 67 word-spacing: normal; 68 letter-spacing: normal; 69 text-transform: none; 70 } 71 72H6 { 73 font-family: Verdana, Arial, Helvetica, sans-serif; 74 font-size: .8em; 75 font-weight: 700; 76 font-style: normal; 77 text-decoration: none; 78 word-spacing: normal; 79 letter-spacing: normal; 80 text-transform: none; 81 } 82 83TFOOT, THEAD { 84 font-size: 1em; 85 word-spacing: normal; 86 letter-spacing: normal; 87 text-transform: none; 88 font-family: Arial, Helvetica, sans-serif; 89 } 90 91TH { 92 vertical-align: baseline; 93 font-size: 1em; 94 font-weight: bold; 95 word-spacing: normal; 96 letter-spacing: normal; 97 text-transform: none; 98 font-family: Arial, Helvetica, sans-serif; 99 } 100 101 102A:link { 103 text-decoration: none; 104 color: #3333cc; 105 } 106 107A:visited { 108 text-decoration: none; 109 color: #333399; 110 } 111 112A:active { 113 text-decoration: none; 114 color: #333399; 115 } 116 117A:hover { 118 text-decoration: underline; 119 color: #3333cc; 120 } 121 122SMALL { 123 font-size: .7em; 124 } 125 126BIG { 127 font-size: 1.17em; 128 } 129 130BLOCKQUOTE, PRE { 131 font-family: Courier New, monospace; 132 } 133 134 135UL LI { 136 list-style-type: square ; 137 } 138 139UL LI LI { 140 list-style-type: disc; 141 } 142 143UL LI LI LI { 144 list-style-type: circle; 145 } 146 147OL LI { 148 list-style-type: decimal; 149 } 150 151OL OL LI { 152 list-style-type: lower-alpha; 153 } 154 155OL OL OL LI { 156 list-style-type: lower-roman; 157 } 158 159IMG { 160 margin-top: 5px; 161 margin-left: 10px; 162 margin-right: 10px; 163 }