tripal.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168
  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. text-align: left;
  53. vertical-align: top;
  54. padding: 0px 0px 0px 20px;
  55. }
  56. .tripal_contents_table_td_toc {
  57. border: 1px solid #888888 !important;
  58. padding: 10px !important;
  59. background: none repeat scroll 0 0 rgba(0, 0, 0, 0.063);
  60. }
  61. .tripal_contents_table_tr {
  62. background-color: transparent;
  63. }
  64. /**
  65. * Resources Sidebar
  66. */
  67. .tripal_toc {
  68. padding: 0px;
  69. margin-right: 0px;
  70. }
  71. .tripal_toc ul {
  72. margin: 0 !important;
  73. padding: 0 !important;
  74. list-style-type: none;
  75. }
  76. .tripal_toc li {
  77. /*
  78. background-color: #EEEEEE;
  79. border-style:solid;
  80. border-width:1px;
  81. border-color: #999999; */
  82. padding: 3px 20px 3px 10px;
  83. margin: 2px 0 2px 0;
  84. }
  85. .tripal_toc_title {
  86. font-size: 1.5em;
  87. line-height: 110%;
  88. padding-bottom: 10px;
  89. }
  90. .tripal_toc_desc {
  91. }
  92. /**
  93. * Details Section
  94. */
  95. .tripal_details {
  96. min-height: 400px;
  97. overflow:auto;
  98. }
  99. .tripal_details_full {
  100. float: left;
  101. background-color: #FFFFFF;
  102. -moz-border-radius: 15px;
  103. -webkit-border-radius: 15px;
  104. -khtml-border-radius: 15px;
  105. border-radius: 15px;
  106. -moz-box-shadow: 3px 3px 4px #888888;
  107. -webkit-box-shadow: 3px 3px 4px #888888;
  108. box-shadow: 3px 3px 4px #888888;
  109. padding: 20px;
  110. min-height: 500px;
  111. margin-right: 10px;
  112. margin-bottom: 10px;
  113. border-style:solid;
  114. border-width:1px;
  115. overflow:auto;
  116. }
  117. /**
  118. * Tables
  119. */
  120. .tripal-subtable {
  121. border-collapse:collapse;
  122. border: 0px solid black;
  123. width: auto;
  124. }
  125. .tripal-subtable td {
  126. padding: 0px 5px 5px 0px;
  127. border: 0px solid black;
  128. }
  129. .tripal-notice {
  130. color: red;
  131. }
  132. /**
  133. * Teaser
  134. */
  135. .tripal-teaser {
  136. clear_both;
  137. margin-bottom: 10px;
  138. }
  139. .tripal-teaser-title {
  140. font-weight: bold;
  141. margin-bottom: 5px;
  142. }
  143. .tripal-teaser-text {
  144. text-align: justify;
  145. text-justify:inter-word;
  146. }
  147. .tripal-teaser-img {
  148. width: 100px;
  149. float: left;
  150. padding-right: 10px;
  151. padding-bottom: 5px;
  152. }