You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- // Place all the styles related to the Products controller here.
- // They will automatically be included in application.css.
- // You can use Sass (SCSS) here: http://sass-lang.com/
- .products {
- table {
- border-collapse: collapse;
- }
-
- table tr td {
- padding: 5px;
- vertical-align: top;
- }
-
- .list_image {
- width: 60px;
- height: 70px;
- }
-
- .list_description {
- width: 60%;
-
- dl {
- margin: 0;
- }
-
- dt {
- color: #244;
- font-weight: bold;
- font-size: larger;
- }
-
- dd {
- margin: 0;
- }
- }
-
- .list_actions {
- font-size: x-small;
- text-align: right;
- padding-left: 1em;
- }
-
- .list_line_even {
- background: #e0f8f8;
- }
-
- .list_line_odd {
- background: #f8b0f8
- }
- }
|