milis.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. body {
  2. font-family: "Iowan Old Style", "Palatino", "Book Antiqua", "serif";
  3. background-color: white;
  4. color: black;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. td.center {
  9. text-align: center;
  10. }
  11. thead {
  12. bottom-border: 1px;
  13. }
  14. .sidebar {
  15. float: right;
  16. margin: 0;
  17. padding: 0;
  18. padding-right: 1em;
  19. }
  20. .sidebar > h3 {
  21. margin-top: 0;
  22. padding-top: 0;
  23. }
  24. main {
  25. padding-left: 1em;
  26. padding-right: 1em;
  27. }
  28. body > footer {
  29. margin-left: 1em;
  30. margin-right: 1em;
  31. border-top: thin solid black;
  32. }
  33. .container {
  34. position: relative;
  35. width: 100%;
  36. margin: 0;
  37. padding: 0;
  38. }
  39. table.displayinfo th {
  40. text-align: left;
  41. }
  42. .number {
  43. text-align: right;
  44. }
  45. h1, h2, h3, h4, h5, h6 {
  46. //margin-top: 2em;
  47. font-family: "Helvetica", "Arial", "sans-serif";
  48. }
  49. .uuid {
  50. font-family: monospace;
  51. }
  52. h1 a {
  53. color: #E0E0E0;
  54. text-decoration: none;
  55. }
  56. a.nocolor {
  57. //color: #E0E0E0;
  58. color: #1010FF;
  59. }
  60. a {
  61. //color: #B0B0FF;
  62. color: #1010FF;
  63. text-decoration: none;
  64. // font-style: italic;
  65. }
  66. a:visited {
  67. //color: #B0B0FF;
  68. color: #1010FF;
  69. text-decoration: none;
  70. font-style: italic;
  71. }
  72. h1 {
  73. font-size: x-large;
  74. }
  75. h2 {
  76. font-size: large;
  77. }
  78. .red {
  79. color: red;
  80. }
  81. .warn {
  82. color: orange;
  83. }
  84. h2.error {
  85. color: red;
  86. }
  87. p {
  88. font-size: normal;
  89. max-width: 72ex;
  90. margin-top: 0;
  91. text-align: justify;
  92. }
  93. .tooltip{
  94. //display: inline;
  95. position: relative;
  96. }
  97. .tooltip:hover:after{
  98. background: #333;
  99. background: rgba(0,0,0,.9);
  100. border-radius: 5px;
  101. bottom: 26px;
  102. color: #fff;
  103. content: attr(tooltip);
  104. left: 20%;
  105. padding: 5px 5px;
  106. position: absolute;
  107. z-index: 98;
  108. max-width: 20em;
  109. /*
  110. width: 20em; // need to make this better fit the text
  111. */
  112. }
  113. td.size {
  114. text-align: right;
  115. }
  116. .tooltip:hover:before{
  117. border: solid;
  118. border-color: #333 transparent;
  119. border-width: 6px 6px 0 6px;
  120. bottom: 20px;
  121. content: "";
  122. left: 50%;
  123. position: absolute;
  124. z-index: 99;
  125. }