tripal.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. .tripal-info-box {
  2. width: 100%;
  3. padding-bottom: 10px;
  4. }
  5. .tripal-info-box-nosidebar {
  6. width: 100%;
  7. padding-bottom: 10px;
  8. }
  9. .tripal-info-box-title {
  10. font-size: 1.5em;
  11. padding-bottom: 15px;
  12. }
  13. .tripal-info-box-title-nosidebar {
  14. font-size: 1.5em;
  15. padding-bottom: 15px;
  16. }
  17. .tripal-info-box-desc {
  18. /* padding-bottom: 15px; */
  19. }
  20. /* hide the title when inside of a block on a panel */
  21. .pane-block .tripal-info-box-title {
  22. visibility: hidden;
  23. padding: 0;
  24. margin: 0;
  25. height: 0px;
  26. }
  27. /* no results message */
  28. .tripal-no-results {
  29. font-style: italic;
  30. padding: 10px;
  31. background-color: #FFEEEE;
  32. }
  33. /**
  34. * Tripal Contents container: contains both the details
  35. * section and the resources sidebar
  36. */
  37. .tripal_contents {
  38. width: 100%;
  39. position: relative;
  40. }
  41. #tripal_contents_table {
  42. padding: 0px !important;
  43. margin: 0px !important;
  44. }
  45. #tripal_contents_table tbody {
  46. padding: 0px !important;
  47. margin: 0px !important;
  48. border: 0px solid #FFFFFF;
  49. }
  50. .tripal_contents_table_td {
  51. border: 0px solid #FFFFFF !important;
  52. padding: 0px !important;
  53. text-align: left;
  54. vertical-align: top;
  55. }
  56. .tripal_contents_table_tr {
  57. background-color: transparent;
  58. }
  59. /**
  60. * Resources Sidebar
  61. */
  62. .tripal_toc {
  63. padding: 0px;
  64. margin-right: 0px;
  65. }
  66. .tripal_toc ul {
  67. margin: 0 !important;
  68. padding: 0 !important;
  69. list-style-type: none;
  70. }
  71. .tripal_toc li {
  72. background-color: #EEEEEE;
  73. border-style:solid;
  74. border-width:1px;
  75. border-color: #999999;
  76. padding: 3px 20px 3px 20px;
  77. margin: 2px 0 2px 0;
  78. }
  79. .tripal_toc_title {
  80. font-size: 1.5em;
  81. line-height: 110%;
  82. padding-bottom: 10px;
  83. }
  84. .tripal_toc_desc {
  85. }
  86. /**
  87. * Details Section
  88. */
  89. .tripal_details {
  90. padding: 0px 20px 20px 20px;
  91. min-height: 500px;
  92. margin-right: 10px;
  93. margin-bottom: 10px;
  94. overflow:auto;
  95. }
  96. .tripal_details_full {
  97. float: left;
  98. background-color: #FFFFFF;
  99. -moz-border-radius: 15px;
  100. -webkit-border-radius: 15px;
  101. -khtml-border-radius: 15px;
  102. border-radius: 15px;
  103. -moz-box-shadow: 3px 3px 4px #888888;
  104. -webkit-box-shadow: 3px 3px 4px #888888;
  105. box-shadow: 3px 3px 4px #888888;
  106. padding: 20px;
  107. min-height: 500px;
  108. margin-right: 10px;
  109. margin-bottom: 10px;
  110. border-style:solid;
  111. border-width:1px;
  112. overflow:auto;
  113. }
  114. /**
  115. * Tables
  116. */
  117. .tripal-subtable {
  118. border-collapse:collapse;
  119. border: 0px solid black;
  120. width: auto;
  121. }
  122. .tripal-subtable td {
  123. padding: 0px 5px 5px 0px;
  124. border: 0px solid black;
  125. }
  126. .tripal-notice {
  127. color: red;
  128. }
  129. /**
  130. * Teaser
  131. */
  132. .tripal-teaser {
  133. clear_both;
  134. margin-bottom: 10px;
  135. }
  136. .tripal-teaser-title {
  137. font-weight: bold;
  138. margin-bottom: 5px;
  139. }
  140. .tripal-teaser-text {
  141. text-align: justify;
  142. text-justify:inter-word;
  143. }
  144. .tripal-teaser-img {
  145. width: 100px;
  146. float: left;
  147. padding-right: 10px;
  148. padding-bottom: 5px;
  149. }