CSS - Fluid Topics - Latest

Design a Custom Component

Category
How To
Audience
public
Version
Latest

The following CSS attributes define the appearance of the custom component. Copy and paste this sample into the CSS section of the custom component editor.

div#result {
  margin:0px;
  width:100%;
}

table#result_table {
  border: 1px solid black;
  border-collapse: collapse;
}

table#result_table td, #result_table th {
  border: 1px solid black;
  padding: 15px 5px;
}

table#result_table th {
  background-color:#E8ECEF;
}

div#result_paging {
  margin-top: 10px;
}

div#result_paging a, div#result_paging span {
  border: 1px solid #000;
  border-radius: 10px;
  padding: 5px;
}