hedera-web/forms/ecomerce/catalog/style.css

508 lines
6.9 KiB
CSS
Raw Normal View History

2015-03-06 23:33:54 +00:00
.catalog
{
margin-right: 17em;
}
2015-02-08 15:38:38 +00:00
/* Topbar */
2015-11-19 13:57:23 +00:00
.catalog-actions > .htk-search-entry
2015-02-08 15:38:38 +00:00
{
2015-09-16 16:11:15 +00:00
margin-top: .8em;
2015-12-10 13:48:43 +00:00
margin-right: .4em;
2015-02-08 15:38:38 +00:00
}
2015-09-28 09:46:24 +00:00
/* Right panel */
2015-02-08 15:38:38 +00:00
2015-09-16 16:11:15 +00:00
.right-panel
2015-02-08 15:38:38 +00:00
{
position: fixed;
2015-09-16 16:11:15 +00:00
top: 3.9em;
2015-07-03 05:49:45 +00:00
bottom: 0;
right: 0;
2015-10-14 11:51:43 +00:00
width: 17em;
2015-02-08 15:38:38 +00:00
background-color: white;
2016-10-20 10:44:32 +00:00
box-shadow: 0 0 .2em rgba(1, 1, 1, .2);
2015-12-10 13:48:43 +00:00
overflow: auto;
}
2015-12-10 13:48:43 +00:00
.right-panel .basket-info
2015-10-14 11:51:43 +00:00
{
background-color: #00ACC1;
2015-12-10 13:48:43 +00:00
color: white;
2016-10-20 10:44:32 +00:00
box-shadow: 0 .1em .1em rgba(1, 1, 1, .3);
padding: 1.2em 2em;
2015-10-14 11:51:43 +00:00
}
2015-12-10 13:48:43 +00:00
.right-panel .basket-info > button
{
color: #E0F2F1;
margin: 0 auto;
display: block;
margin-top: .4em;
}
2015-12-10 13:48:43 +00:00
.right-panel .basket-info > p
{
2015-12-10 13:48:43 +00:00
margin: 0;
padding: .4em 0;
2015-04-01 08:24:15 +00:00
font-size: 1.1em;
2015-12-10 13:48:43 +00:00
text-align: left;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.right-panel .filter
{
2019-02-12 15:40:17 +00:00
padding: 1em;
}
.right-panel .filters,
.right-panel .order
{
display: none;
2015-07-23 15:58:48 +00:00
}
.right-panel .realm-msg
{
margin-top: 1em;
}
.right-panel .realm-msg > h1
{
font-weight: normal;
text-align: center;
padding: 2.5em 0;
color: #777;
}
.right-panel h2
{
font-weight: normal;
padding: .4em 0;
color: #777;
font-size: 1.1em;
}
2019-02-12 16:21:19 +00:00
.right-panel .realms > div > div
{
text-align: center;
}
.right-panel .realms a
{
2019-02-12 16:21:19 +00:00
display: inline-block;
width: 30%;
padding: .6em;
2019-02-12 15:40:17 +00:00
box-sizing: border-box;
}
.right-panel .realms a:hover
2015-07-23 15:58:48 +00:00
{
2016-10-20 10:44:32 +00:00
background-color: rgba(1, 1, 1, .05);
2019-02-12 15:40:17 +00:00
border-radius: .15em;
}
.right-panel .realms a > img
{
display: block;
padding: 0;
2015-07-23 15:58:48 +00:00
width: 100%;
}
.right-panel .vn-filter,
.right-panel select
{
margin: 0 auto;
margin-bottom: .7em;
width: 90%;
display: block;
}
2015-12-10 13:48:43 +00:00
.vn-filter > ul
{
2015-12-10 13:48:43 +00:00
margin: 0;
list-style-type: none;
text-align: left;
color: #666;
padding-left: .8em;
2015-02-01 03:21:54 +00:00
}
2015-12-10 13:48:43 +00:00
.vn-filter li
{
2015-12-10 13:48:43 +00:00
margin: 0;
margin-top: .3em;
2015-12-10 13:48:43 +00:00
line-height: 2em;
max-width: 90%;
2015-12-10 13:48:43 +00:00
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
2015-12-10 13:48:43 +00:00
.vn-filter li > button
{
2015-12-10 13:48:43 +00:00
vertical-align: middle;
text-align: center;
padding: .2em;
2016-01-15 13:14:07 +00:00
margin: 0;
2015-12-10 13:48:43 +00:00
margin-right: .2em;
}
.right-panel .filters > button
{
display: block;
margin: 0 auto;
margin-top: 1em;
}
2016-05-04 14:36:51 +00:00
/* Items */
2015-07-07 15:27:47 +00:00
.item-box
{
transition: background-color 200ms ease-in;
}
.item-box:hover
{
cursor: pointer;
background-color: #eee;
}
2016-05-04 14:36:51 +00:00
.item-info
2015-07-07 15:27:47 +00:00
{
2016-05-04 14:36:51 +00:00
position: relative;
2015-07-07 15:27:47 +00:00
}
2016-05-04 14:36:51 +00:00
.item-info .second-category
{
font-weight: bold;
color: orange;
}
2016-05-04 14:36:51 +00:00
.item-info .third-category
2015-02-01 03:21:54 +00:00
{
font-weight: bold;
color: red;
2015-02-01 03:21:54 +00:00
}
2016-05-04 14:36:51 +00:00
.item-info > h2
{
2016-05-04 14:36:51 +00:00
padding: 0;
2019-04-16 13:54:55 +00:00
margin-bottom: .15em;
font-weight: normal;
2019-03-28 15:33:26 +00:00
font-size: 1em;
text-overflow: ellipsis;
overflow: hidden;
2019-03-28 15:33:26 +00:00
max-height: 3.8em;
}
2016-05-04 14:36:51 +00:00
.item-info > p
{
margin: 0;
padding: 0;
color: #777;
font-size: .8em;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.item-info .sub-name
{
text-transform: uppercase;
2016-05-04 14:36:51 +00:00
padding: 0;
2019-04-16 13:54:55 +00:00
margin-bottom: .2em;
2019-03-28 15:33:26 +00:00
font-size: .9em;
2016-05-04 14:36:51 +00:00
}
.item-info > .htk-button
{
margin: -0.3em;
padding: .3em;
}
.item-info > .htk-button > img
{
vertical-align: middle;
}
.item-info .available-price
{
white-space: nowrap;
font-size: .95em;
text-align: right;
align-items: middle;
column-gap: .2em;
display: flex;
}
.item-info .available-price > *
{
border-radius: .2em;
padding: .3em;
border: .1em transparent solid;
2022-04-13 13:21:01 +00:00
background-color: white;
}
.item-info .grouping
{
width: 2em;
background-color: #ddd;
}
.item-info .available
{
width: 3.3em;
border-color: #bbb;
color: #777;
}
.item-info .price
{
width: 4em;
border-color: #9cbc28;
color: #748c1e;
}
.tags
2016-05-04 14:36:51 +00:00
{
font-size: .8em;
display: table;
color: #333;
2016-05-04 14:36:51 +00:00
margin: 0;
width: auto;
border-collapse: collapse;
2016-05-04 14:36:51 +00:00
}
.tags td:first-child {
color: #999;
2019-04-16 13:54:55 +00:00
padding-right: .5em;
}
/* List view */
.list-view
{
max-width: 30em;
margin: 0 auto;
padding: 1em;
}
.list-view .item-box
{
display: block;
position: relative;
width: 100%;
margin: 0;
height: 5.5em;
overflow: visible;
border-bottom: 1px solid #DDD;
}
2016-05-02 13:05:49 +00:00
.list-view .item-box > .htk-image
{
margin: 1em;
width: 3.5em;
height: 3.5em;
float: left;
overflow: hidden;
}
2016-05-02 13:05:49 +00:00
.list-view .item-box > .htk-image > img
{
2016-05-02 13:05:49 +00:00
border-radius: 50%;
}
.list-view .item-info
{
position: absolute;
left: 5.5em;
right: 0;
top: 0;
bottom: 0;
margin: .8em;
margin-left: 0;
}
.list-view .item-info > h2
{
font-size: 1em;
white-space: nowrap;
}
.list-view .item-info > .color
{
display: none;
}
.list-view .item-info > .htk-button
{
float: right;
}
.list-view .item-info .available-price
{
2019-04-16 13:54:55 +00:00
clear: both;
float: right;
2022-04-13 13:17:43 +00:00
position:absolute;
bottom: 0;
right: 0;
}
.list-view .item-info .tags
{
display: block;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.list-view .item-info .tags > tr
{
display: inline-block;
}
.list-view .item-info .tags td
{
display: inline-block;
2019-04-16 13:54:55 +00:00
padding-right: .5em;
}
.list-view .item-info .tags td:first-child
{
display: none;
}
/* Grid view */
.grid-view
{
padding: 1em;
padding-right: .2em;
padding-bottom: .4em;
text-align: center;
}
.grid-view .item-box
{
text-align: left;
position: relative;
display: inline-block;
2019-03-28 15:33:26 +00:00
width: 24em;
margin: 0;
margin-right: .8em;
margin-bottom: .6em;
2019-03-28 15:33:26 +00:00
height: 11em;
overflow: hidden;
}
2016-05-02 13:05:49 +00:00
.grid-view .item-box > .htk-image
{
2019-03-28 15:33:26 +00:00
width: 11em;
height: 100%;
float: left;
}
.grid-view .item-info
{
position: absolute;
2019-03-28 15:33:26 +00:00
left: 11.4em;
right: 0;
top: 0;
bottom: 0;
margin: .6em;
}
.grid-view .item-info .available-price
2015-11-19 13:57:23 +00:00
{
position: absolute;
bottom: 0;
right: 0;
2015-11-19 13:57:23 +00:00
}
.grid-view .item-info .tags td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
max-width: 6em;
width: 6em;
2018-07-23 15:30:18 +00:00
line-height: 1.1em;
}
/* Card */
.card-popup
{
overflow: auto;
}
.item-card
{
font-size: .9em;
width: 20em;
}
.item-card .top
{
padding: 1em;
}
.item-card .item-info
{
margin-left: 9em;
height: 8em;
}
.item-card .htk-image
{
height: 8em;
width: 8em;
float: left;
border-radius: .3em;
}
.item-card .desc
{
clear: both;
margin-top: 1em 0;
font-size: .9em;
}
.item-card .lots-grid
{
border-top: 1px solid #DDD;
}
.item-card .lots-grid tr
{
height: 3em;
}
2019-04-16 13:54:55 +00:00
.item-card .lots-grid .cell-spin
{
max-width: initial;
width: 3em;
}
2019-09-16 08:09:41 +00:00
.item-card .lots-grid .price-kg
{
font-size: .8em;
color: #999;
width: 1px;
}
2019-04-16 13:54:55 +00:00
.item-card .lots-grid .cell-text
{
max-width: initial;
width: auto;
}
.item-card .lots-grid .cell-button
{
max-width: initial;
width: 1em;
}
.item-card .footer
{
text-align: center;
background-color: #009688;
color: white;
line-height: 2em;
padding: .4em;
}
.item-card .footer > button
{
margin: 0;
}
.item-card .erase
{
float: left;
}
.item-card .confirm
{
float: right;
}
.item-card .erase > img,
.item-card .confirm > img
{
display: block;
height: 1em;
}
/* Mobile */
2015-11-19 13:57:23 +00:00
.catalog-actions > button.menu
{
display: none;
padding: 1.1em .5em;
}
2015-11-19 13:57:23 +00:00
.catalog-actions > button.menu > img
{
height: 1.8em;
}
@media (max-width: 960px)
{
2015-11-19 13:57:23 +00:00
.catalog-actions > button.menu
{
display: block;
}
2015-09-16 16:11:15 +00:00
.right-panel
{
2015-09-16 16:11:15 +00:00
top: 0;
right: -17em;
2015-10-14 11:51:43 +00:00
z-index: 20;
transition: transform 200ms ease-out;
-webkit-transition: transform 200ms ease-out;
2015-09-16 16:11:15 +00:00
}
.right-panel.show
{
transform: translateZ(0) translateX(-17em);
-webkit-transform: translateZ(0) translateX(-17em);
}
.catalog
{
margin-right: 0;
}
}