mini.css 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411
  1. /* CSS Document */
  2. body {
  3. font-size: 10px; /* Resets 1em to 10px */
  4. font-family: 'Trebuchet MS', Verdana, Sans-Serif;
  5. color: #444;
  6. background-color: #ffffff;
  7. text-align: center;
  8. margin: 5px 0 5px;
  9. }
  10. #page {
  11. background: #fff;
  12. border: #fff;
  13. border-width:thin;
  14. border: #fff;
  15. margin: 0 auto;
  16. padding: 5px;
  17. position: relative;
  18. /* The entire template's width is set in this class. */
  19. width: 900px;
  20. _width: 900px;
  21. }
  22. div.apage {
  23. background: #fff;
  24. border: #fff;
  25. border-width:thin;
  26. border: #fff;
  27. margin: 0 auto;
  28. padding: 5px;
  29. position: relative;
  30. width: 95%;
  31. }
  32. .primary {
  33. width: 65%;
  34. min-width: 300px;
  35. _width: 300px; /* IE Hack */
  36. float: left;
  37. padding: 20px 2% 10px 2%;
  38. margin: 0;
  39. }
  40. #header {
  41. padding: 0;
  42. margin: 0;
  43. position: relative;
  44. height: 70px;
  45. background: #ff0000;
  46. background-color: #0099FF;
  47. }
  48. ul.menu {
  49. margin: 0;
  50. padding: 0;
  51. position: absolute;
  52. bottom: 0;
  53. left: 11px;
  54. width: 90%;
  55. }
  56. ul.menu,
  57. ul.menu li a {
  58. padding: 3px 8px 3px;
  59. }
  60. ul.menu li a {
  61. font: 9px Verdana, Helvetica, Arial, Sans-Serif;
  62. text-transform: lowercase;
  63. color: white;
  64. margin: 0;
  65. }
  66. ul.menu li a:hover {
  67. background: #333;
  68. color: #eee !important;
  69. text-decoration: none;
  70. }
  71. ul.menu li.current_page_item a,
  72. ul.menu li.current_page_item a:hover {
  73. color: #333 !important;
  74. font-family: 'Trebuchet MS', Verdana, Sans-Serif;
  75. background: white;
  76. text-decoration: none;
  77. }
  78. /*images and borders*/
  79. .primary img {
  80. margin-left: -5px;
  81. padding: 4px;
  82. border: 1px solid #ccc;
  83. max-width: 100%;
  84. }
  85. img.center {
  86. display: block;
  87. margin-left: auto;
  88. margin-right: auto;
  89. }
  90. img.alignright {
  91. padding: 4px;
  92. margin: 0 0 2px 7px;
  93. display: inline;
  94. }
  95. img.alignleft {
  96. padding: 4px;
  97. margin: 0 7px 2px 0;
  98. display: inline;
  99. }
  100. img.noborder {
  101. border: none;
  102. }
  103. .tableheader {
  104. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  105. }
  106. .secondary {
  107. font: 9px 'Trebuchet MS', Verdana, Sans-Serif;
  108. padding: 10px 0;
  109. margin: 0 0 20px 71%;
  110. width: 26%;
  111. color: #666;
  112. /* The following are IE Fixes */
  113. _margin-left: 0%;
  114. _margin-right: -3%;
  115. _width: 28%;
  116. }
  117. h1 { /* H1 is used for the title of your blog */
  118. font-size: 20px;
  119. letter-spacing: -1px;
  120. padding-top: 25px;
  121. margin: 0 0 0 25px;
  122. font-weight: bold;
  123. width: 100%;
  124. }
  125. #header .description { /* Blog description, under blog title */
  126. font-size: 15px;
  127. margin: 0 0 0 25px;
  128. text-align: left;
  129. }
  130. h1, h1 a, h1 a:hover, h1 a:visited,
  131. #header .description {
  132. text-decoration: none;
  133. color: white;
  134. }
  135. h2, h2 a, h2 a:visited,
  136. h3, h3 a, h3 a:visited,
  137. h4, h4 a, h4 a:visited {
  138. color: #444;
  139. font-size: 12px;
  140. padding-bottom: 4px;
  141. letter-spacing: -1px;
  142. }
  143. .primary h2 { /* H2 is what kind of page you are on. Eg. 'Monthly Archive'. */
  144. font-size: 12px;
  145. font-weight: bold;
  146. margin: 0 0 0px;
  147. padding: 0;
  148. letter-spacing: -1px;
  149. text-align: center;
  150. display: inline;
  151. }
  152. .secondary h2 { /* Secondary H2 is sidebar headlines */
  153. font-size: 23px;
  154. font-weight: normal;
  155. padding: 0;
  156. display: inline;
  157. }
  158. .tabletitle {
  159. font-size: 17px;
  160. }
  161. .metadata { /* Time and category for blog entries, i added the color tag*/
  162. font-size: 9px;
  163. display: block;
  164. }
  165. .primary h3 , .primary h4{ /* H3 is entry headlines. H4 is comments and replyform headlines */
  166. font-size: 17px;
  167. font-weight: bold;
  168. letter-spacing: -1px;
  169. display: inline;
  170. }
  171. /*- Links */
  172. a:hover, a:visited:hover {
  173. text-decoration: underline;
  174. }
  175. h2 a:hover, h2 span a:hover {
  176. color: #27d !important;
  177. }
  178. a {
  179. color: #27d;
  180. text-decoration: none;
  181. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  182. }
  183. font.headlink {
  184. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  185. }
  186. b {
  187. color: #27d;
  188. text-decoration: none;
  189. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  190. }
  191. .itemtext a:visited {
  192. color: #b41;
  193. }
  194. div.maintable {
  195. margin-left: auto;
  196. margin-right: auto;
  197. border: 1px dotted #ddd;
  198. width: 70%;
  199. }
  200. div.btable {
  201. margin-left: auto;
  202. margin-right: auto;
  203. width: 70%;
  204. }
  205. table {
  206. margin-left: auto;
  207. margin-right: auto;
  208. width: 50%;
  209. }
  210. div.fulltable {
  211. margin-left: auto;
  212. margin-right: auto;
  213. border: 1px dotted #ddd;
  214. width: 90%;
  215. }
  216. div.fbtable {
  217. margin-left: auto;
  218. margin-right: auto;
  219. width: 90%;
  220. }
  221. /*
  222. table {
  223. margin-left: auto;
  224. margin-right: auto;
  225. border: 1px dotted #ddd;
  226. width: 45%;
  227. }
  228. */
  229. table.full {
  230. /* margin-left: auto;
  231. margin-right: auto;*/
  232. border: 1px dotted #ddd;
  233. width: 90%;
  234. }
  235. table.really_full {
  236. margin-left: auto;
  237. margin-right: auto;
  238. border: 1px dotted #ddd;
  239. width: 100%;
  240. }
  241. table.swreg {
  242. border: 1px dotted #ddd;
  243. }
  244. table.noborder_45 {
  245. margin-left: auto;
  246. margin-right: auto;
  247. border: 0px;
  248. width: 45%;
  249. }
  250. table.noborder {
  251. margin-left: auto;
  252. margin-right: auto;
  253. border: 0px;
  254. width: 90%;
  255. }
  256. td.avg {
  257. padding-top: 5px;
  258. /*border-top: 2px solid #000;*/
  259. font-weight: bold;
  260. color: #900;
  261. }
  262. td.max {
  263. color: #ff0000;
  264. font-weight: bold;
  265. }
  266. td {
  267. text-align: center;
  268. font-weight: bold;
  269. font: 12px 'Trebuchet MS', Verdana, Sans-Serif;
  270. }
  271. td.wide {
  272. text-align: center;
  273. font-weight: bold;
  274. font: 12px 'Trebuchet MS', Verdana, Sans-Serif;
  275. width: 100%;
  276. overflow: hidden;
  277. white-space: nowrap;
  278. }
  279. td.left {
  280. color: #E8E8E8;
  281. text-align: left;
  282. font-weight: bold;
  283. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  284. }
  285. td.left_act {
  286. text-align: left;
  287. font-weight: bold;
  288. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  289. }
  290. td.reason {
  291. text-align: center;
  292. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  293. }
  294. td.descr {
  295. text-align: left;
  296. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  297. }
  298. td.right {
  299. text-align: right;
  300. font-weight: bold;
  301. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  302. }
  303. p.error {
  304. color: red
  305. }
  306. p.msg_p {
  307. color: green
  308. }
  309. th {
  310. color: #444;
  311. text-align: center;
  312. font-family: 'Trebuchet MS', Verdana, Sans-Serif;
  313. font-size: 12px;
  314. }
  315. th.delete {
  316. font: 10px 'Trebuchet MS', Verdana, Sans-Serif;
  317. font-weight: bold;
  318. }
  319. bodyswreg {
  320. margin: 0px;
  321. padding: 0px;
  322. font: 29px 'Trebuchet MS', Verdana, Sans-Serif;
  323. }
  324. #headswreg {min-height: 3.5em;
  325. text-align: center;
  326. color: black;
  327. background: white;
  328. /* padding-left: 140px;
  329. padding-right: 140px;*/
  330. border-bottom: 1px black solid;
  331. }
  332. #leftswreg {float: left;
  333. clear: right;
  334. width: 5em;
  335. min-width: 20%;
  336. margin: 0em;
  337. padding: 0em;
  338. }
  339. #rightswreg {float: right;
  340. clear: right;
  341. right: 0px;
  342. width: 30%;
  343. padding: 0em;
  344. margin: 0em;
  345. }
  346. #contentswreg {padding: 0px;
  347. padding-right: 1em;
  348. margin: 0px;
  349. margin-left: 25%;
  350. margin-right: 25%;
  351. }
  352. #footerswreg {
  353. background: #ffffff;
  354. float: inherit;
  355. clear: both;
  356. width: 100%;
  357. }