| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179 |
- .error-empty {
- border: solid 1px red;
- box-shadow: 0px 0px 5px #ff0000;
- }
- #results {
- display: block;
- width: 71%;
- margin: 0 auto;
- background-color: #eeeeee;
- padding: 30px;
- }
- #results article {
- display: block;
- width: 25%;
- background-color: #cccccc;
- float: left;
- margin: 15px;
- padding: 15px;
- }
- .category {
- display: block;
- height: 20px;
- font-style: italic;
- color: #888;
- }
- .product-name {
- font-size: 1.8rem;
- height: 90px;
- overflow: hidden;
- }
- #results figure {
- display: block;
- width: 100%;
- height: 200px;
- overflow: hidden;
- }
- .product-thumbnail {
- width: 278px;
- height: 278px;
- }
- .product-details {
- display: block;
- margin-top: 10px;
- height: 85px;
- overflow: hidden;
- }
- .manufacturer {
- color: #888;
- display: block;
- width: 50%;
- float: left;
- }
- .product-price {
- display: block;
- float: right;
- font-weight: bold;
- font-size: 1.2rem;
- text-align: right;
- width: 50%;
- color: #000;
- }
- a.product-link {
- text-decoration: none;
- color: inherit;
- }
- a.product-link:hover {
- text-decoration: none;
- }
- #results article:hover {
- background-color: #fff;
- }
- .product-row {
- display: block;
- float: left;
- width: 50%;
- }
- .big-icon {
- display: block;
- width: 30px;
- height: 30px;
- font-size: 2rem;
- margin-bottom: 20px;
- }
- .product-image {
- width: 90%;
- height: auto;
- }
- .slim {
- margin: 0;
- height: auto;
- margin-bottom: 30px;
- }
- .jumbo {
- font-size: 2.2rem;
- }
- .product-detail-list {
- width: 100%;
- margin-top: 15px;
- list-style: none;
- }
- .product-detail-list li {
- padding-bottom: 10px;
- }
- .product-detail-list li span {
- display: inline-block;
- margin-left: 10px;
- width: 100px;
- }
- .price-data {
- width: 20%;
- float: left;
- text-align: right;
- color: #888;
- }
- .button-wrap {
- width: 80%;
- float: left;
- text-align: left;
- padding-top: 10px;
- }
- .button-wrap .btn {
- float: left;
- width: auto;
- height: 30px;
- border: none;
- text-align: center;
- cursor: pointer;
- color: white;
- font-size: 0.8rem;
- font-weight: lighter;
- }
- .btn-green {background-color: #6FB121;}
- .btn-blue {background-color: #0075b0;}
- .btn-orange {background-color: #FF9233;}
- .small-price {
- width: 60px;
- height: 30px;
- background-color: white;
- border: solid 1px #eee;
- color: #000;
- font-size: 12px;
- text-align: center;
- }
- .text-word {
- width: 95%;
- height: 30px;
- background-color: white;
- border: solid 1px #eee;
- color: #000;
- font-size: 12px;
- text-align: left;
- padding-left: 5px;
- }
|