| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- table.table {
- border: none;
- width: 100%;
- height: 100%;
- border-spacing: 1px;
- border-collapse: separate;
- margin: 0;
- margin-top: -15px;
- }
- table.table th {
- background-color: #888;
- color: white;
- text-align: left;
- padding: 1px;
- padding-bottom: 0px;
- font-size: 11px;
- }
- table.table td {
- color: #444;
- text-align: left;
- padding: 1px;
- font-size: 10px;
- font-weight: bold;
- }
- table.table tr {
- background-color: #fff;
- }
- table.table tr:nth-child(even) {
- background-color: transparent;
- }
- #minicart {
- display: none;
- position: fixed;
- margin-left: -115px;
- margin-top: -20px;
- background-color: transparent;
- width: 300px;
- height: auto;
- min-height: 150px;
- z-index: 999999999;
- }
- table.minilist {
- border: none;
- width: 100%;
- height: auto;
- border-spacing: 3px;
- border-collapse: collapse;
- margin: 0;
- font-size: 0.8rem;
- text-transform: none;
- }
- table.minilist th {
- background-color: #ccc;
- color: #666;
- text-align: left;
- padding: 5px;
- }
- table.minilist td {
- color: #444;
- text-align: left;
- padding: 5px;
- border-spacing: 3px;
- border-collapse: collapse;
- }
- table.minilist td a {
- color: #666;
- text-decoration: none;
- }
- table.minilist tr {
- background-color: #fff;
- }
- table.minilist tr:nth-child(even) {
- background-color: #eee;
- }
- table.minilist td.iconed {
- text-align: center;
- }
- table.minilist td.mini-footer {
- background-color: #232A31;
- color: white;
- }
|