123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- .tripal-info-box {
- width: 100%;
- padding-bottom: 10px;
- }
- .tripal-info-box-nosidebar {
- width: 100%;
- padding-bottom: 10px;
- }
- .tripal-info-box-title {
- font-size: 1.5em;
- padding-bottom: 15px;
- }
- .tripal-info-box-title-nosidebar {
- font-size: 1.5em;
- padding-bottom: 15px;
- }
- .tripal-info-box-desc {
- /* padding-bottom: 15px; */
- }
- /* hide the title when inside of a block on a panel */
- .pane-block .tripal-info-box-title {
- visibility: hidden;
- padding: 0;
- margin: 0;
- height: 0px;
- }
- /* no results message */
- .tripal-no-results {
- font-style: italic;
- padding: 10px;
- background-color: #FFEEEE;
- }
- /**
- * Tripal Contents container: contains both the details
- * section and the resources sidebar
- */
- .tripal_contents {
- width: 100%;
- position: relative;
- }
- #tripal_contents_table {
- padding: 0px !important;
- margin: 0px !important;
-
- }
- #tripal_contents_table tbody {
- padding: 0px !important;
- margin: 0px !important;
- border: 0px solid #FFFFFF;
- }
- .tripal_contents_table_td {
- border: 0px solid #FFFFFF !important;
- padding: 0px !important;
- text-align: left;
- vertical-align: top;
- }
- .tripal_contents_table_tr {
- background-color: transparent;
- }
- /**
- * Resources Sidebar
- */
- .tripal_toc {
- padding: 0px;
- margin-right: 0px;
- }
- .tripal_toc ul {
- margin: 0 !important;
- padding: 0 !important;
- list-style-type: none;
- }
- .tripal_toc li {
- background-color: #EEEEEE;
- border-style:solid;
- border-width:1px;
- border-color: #999999;
- padding: 3px 20px 3px 20px;
- margin: 2px 0 2px 0;
- }
- .tripal_toc_title {
- font-size: 1.5em;
- line-height: 110%;
- padding-bottom: 10px;
- }
- .tripal_toc_desc {
- }
- /**
- * Details Section
- */
- .tripal_details {
- padding: 0px 20px 20px 20px;
- min-height: 500px;
- margin-right: 10px;
- margin-bottom: 10px;
- overflow:auto;
- }
- .tripal_details_full {
- float: left;
- background-color: #FFFFFF;
- -moz-border-radius: 15px;
- -webkit-border-radius: 15px;
- -khtml-border-radius: 15px;
- border-radius: 15px;
- -moz-box-shadow: 3px 3px 4px #888888;
- -webkit-box-shadow: 3px 3px 4px #888888;
- box-shadow: 3px 3px 4px #888888;
- padding: 20px;
- min-height: 500px;
- margin-right: 10px;
- margin-bottom: 10px;
- border-style:solid;
- border-width:1px;
-
- overflow:auto;
- }
- /**
- * Tables
- */
- .tripal-subtable {
- border-collapse:collapse;
- border: 0px solid black;
- width: auto;
- }
- .tripal-subtable td {
- padding: 0px 5px 5px 0px;
- border: 0px solid black;
- }
- .tripal-notice {
- color: red;
- }
- /**
- * Teaser
- */
- .tripal-teaser {
- clear_both;
- margin-bottom: 10px;
- }
- .tripal-teaser-title {
- font-weight: bold;
- margin-bottom: 5px;
- }
- .tripal-teaser-text {
- text-align: justify;
- text-justify:inter-word;
- }
- .tripal-teaser-img {
- width: 100px;
- float: left;
- padding-right: 10px;
- padding-bottom: 5px;
- }
|