2019-12-26 21:31:37 +08:00
|
|
|
.mobileCloseMenu {
|
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
padding: 1em 1em 0;
|
|
|
|
}
|
|
|
|
|
2023-07-21 17:24:31 +08:00
|
|
|
.simclone {
|
2020-01-19 22:15:51 +08:00
|
|
|
z-index: 10;
|
|
|
|
}
|
|
|
|
|
2020-01-22 22:47:10 +08:00
|
|
|
.feedback-add-success {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2023-06-30 10:10:15 +08:00
|
|
|
#accordion_categories,
|
2023-07-10 17:46:45 +08:00
|
|
|
#accordion_categories .accordion-header,
|
|
|
|
#accordion_categories .accordion-button,
|
|
|
|
#accordion_categories .accordion-item {
|
2023-06-30 10:10:15 +08:00
|
|
|
background-color: inherit;
|
2023-07-10 17:46:45 +08:00
|
|
|
border: none;
|
2023-07-11 13:50:32 +08:00
|
|
|
--bs-accordion-border-width: 0;
|
2023-06-30 10:10:15 +08:00
|
|
|
}
|
|
|
|
|
2023-07-10 17:46:45 +08:00
|
|
|
.accordion-button:focus {
|
|
|
|
box-shadow: none;
|
|
|
|
border-color: rgba(0,0,0,.125);
|
|
|
|
}
|
|
|
|
|
|
|
|
#accordion_categories .accordion-item:not(:first-child) {
|
2023-06-30 10:10:15 +08:00
|
|
|
border-top: thin rgba(255,255, 255, 20%) solid ;
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:46:45 +08:00
|
|
|
#accordion_categories .accordion-header {
|
2023-06-30 10:10:15 +08:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:46:45 +08:00
|
|
|
#accordion_categories .accordion-button:after {
|
|
|
|
background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
|
|
|
|
}
|
|
|
|
|
2023-06-30 10:10:15 +08:00
|
|
|
#accordion_categories button {
|
|
|
|
color: white;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 1.75rem;
|
|
|
|
padding: .75rem 2rem;
|
|
|
|
}
|
|
|
|
|
2023-07-11 13:50:32 +08:00
|
|
|
#accordion_categories .accordion-body {
|
2023-06-30 10:10:15 +08:00
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
2023-07-10 17:46:45 +08:00
|
|
|
#accordion_categories .accordion-header:hover {
|
2023-06-30 10:10:15 +08:00
|
|
|
background-color: #1f4f68;
|
|
|
|
transition: 0.3s;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#accordion_categories button:focus,
|
|
|
|
#accordion_categories button:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:31:37 +08:00
|
|
|
/*
|
|
|
|
##Device = Tablets, Ipads (portrait)
|
|
|
|
##Screen = B/w 768px to 1024px
|
|
|
|
*/
|
2019-12-26 22:30:09 +08:00
|
|
|
@media (min-width: 768px) and (max-width: 1080px) {
|
2020-01-02 21:44:21 +08:00
|
|
|
.logo > img {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
padding-top: 5px !important;
|
|
|
|
padding-bottom: 5px !important;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:31:37 +08:00
|
|
|
body {
|
2020-01-02 21:44:21 +08:00
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop, #root-shop>div {
|
2023-07-05 17:45:56 +08:00
|
|
|
height: calc(100vh - 10px - 2.5rem); /* .navbar vertical padding + line height (.navbar-brand.font-size.rem * body.font-size * body.line-height)*/
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem {
|
|
|
|
padding: 2rem 1rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content img {
|
|
|
|
height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content .price {
|
|
|
|
padding: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content h3 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content ul {
|
|
|
|
font-size: .6rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control > .description,
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price table {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-form form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel {
|
|
|
|
padding: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .mobileBtnDisplaySideMenu,
|
|
|
|
#root-shop .mobileCloseMenu {
|
2019-12-26 22:30:09 +08:00
|
|
|
display: none !important;
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
2019-12-26 22:19:10 +08:00
|
|
|
|
|
|
|
#root-shop .mobileBtnDisplaySideMenu button,
|
|
|
|
#root-shop .mobileCloseMenu button {
|
2019-12-26 22:30:09 +08:00
|
|
|
-webkit-appearance: none !important;
|
|
|
|
background: none !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2019-12-26 22:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table tr {
|
|
|
|
padding: .8em 0;
|
|
|
|
display: flex !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-03-02 21:27:31 +08:00
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price,
|
|
|
|
#root-shop .panel .summary>.summary-form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-06-30 10:10:15 +08:00
|
|
|
|
|
|
|
#accordion_categories button {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
padding: .75rem 1rem;
|
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
##Device = Tablets, Ipads (landscape)
|
|
|
|
##Screen = B/w 768px to 1024px
|
|
|
|
*/
|
2019-12-26 22:30:09 +08:00
|
|
|
@media (min-width: 768px) and (max-width: 1080px) and (orientation: landscape) {
|
2020-01-02 21:44:21 +08:00
|
|
|
.logo > img {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
padding-top: 5px !important;
|
|
|
|
padding-bottom: 5px !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop, #root-shop>div {
|
2023-07-05 17:45:56 +08:00
|
|
|
height: calc(100vh - 10px - 2.5rem); /* .navbar vertical padding + line height (.navbar-brand.font-size.rem * body.font-size * body.line-height)*/
|
2020-01-02 21:44:21 +08:00
|
|
|
}
|
|
|
|
|
2019-12-26 22:19:10 +08:00
|
|
|
#root-shop .mobileBtnDisplaySideMenu,
|
|
|
|
#root-shop .mobileCloseMenu {
|
2019-12-26 22:30:09 +08:00
|
|
|
display: none !important;
|
2019-12-26 22:19:10 +08:00
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
|
2019-12-26 22:19:10 +08:00
|
|
|
#root-shop .mobileBtnDisplaySideMenu button,
|
|
|
|
#root-shop .mobileCloseMenu button {
|
2019-12-26 22:30:09 +08:00
|
|
|
-webkit-appearance: none !important;
|
|
|
|
background: none !important;
|
|
|
|
border: none !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
2019-12-26 22:19:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table tr {
|
|
|
|
padding: .8em 0;
|
|
|
|
display: flex !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2019-12-26 22:30:09 +08:00
|
|
|
|
|
|
|
#root-shop .panel .summary {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price table {
|
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-form form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price tfoot {
|
|
|
|
font-size: .85rem;
|
|
|
|
}
|
|
|
|
|
2020-04-14 15:08:28 +08:00
|
|
|
/*#root-shop .panel .summary>.summary-form form input[type="submit"] {
|
2019-12-26 22:30:09 +08:00
|
|
|
margin-bottom: 1em;
|
2020-04-14 15:08:28 +08:00
|
|
|
}*/
|
2020-03-02 21:27:31 +08:00
|
|
|
#root-shop .panel .summary>.summary-price,
|
|
|
|
#root-shop .panel .summary>.summary-form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-06-30 10:10:15 +08:00
|
|
|
|
|
|
|
#accordion_categories button {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
padding: .75rem 1rem;
|
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
##Device = Low Resolution Tablets, Mobiles (Landscape)
|
|
|
|
##Screen = B/w 481px to 767px
|
|
|
|
*/
|
|
|
|
@media (min-width: 481px) and (max-width: 767px) {
|
2020-01-22 22:47:10 +08:00
|
|
|
.feedback-add-success {
|
|
|
|
background-color: green;
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
padding: 1em;
|
|
|
|
z-index: 100000;
|
|
|
|
color: white;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 0 5px 3px;
|
|
|
|
}
|
|
|
|
|
2020-01-21 00:07:53 +08:00
|
|
|
.dropdown-item {
|
|
|
|
font-size: .75em;
|
|
|
|
}
|
2020-01-21 00:43:33 +08:00
|
|
|
/*.sticky-top {
|
2020-01-21 00:07:53 +08:00
|
|
|
position: fixed;
|
2020-01-21 00:43:33 +08:00
|
|
|
}*/
|
2019-12-30 18:34:18 +08:00
|
|
|
.logo > img {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2019-12-30 18:14:04 +08:00
|
|
|
body {
|
2019-12-30 18:48:42 +08:00
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop, #root-shop>div {
|
2023-07-05 17:45:56 +08:00
|
|
|
height: calc(100vh - 10px - 2.5rem); /* .navbar vertical padding + line height (.navbar-brand.font-size.rem * body.font-size * body.line-height)*/
|
2019-12-30 18:14:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem {
|
2019-12-30 18:48:42 +08:00
|
|
|
padding: 1rem .5rem .5rem;
|
2019-12-30 18:14:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content img {
|
|
|
|
height: 230px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content .price {
|
|
|
|
padding: .3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content h3 {
|
2019-12-30 18:48:42 +08:00
|
|
|
font-size: 1rem;
|
2019-12-30 18:14:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content ul {
|
|
|
|
font-size: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel {
|
|
|
|
padding: 1.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control > .description,
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2019-12-30 18:48:42 +08:00
|
|
|
#root-shop .panel h2 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2019-12-30 18:14:04 +08:00
|
|
|
#root-shop .panel .summary>.summary-price table {
|
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-form form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price tfoot {
|
|
|
|
font-size: .85rem;
|
|
|
|
}
|
|
|
|
|
2020-04-14 15:08:28 +08:00
|
|
|
/*#root-shop .panel .summary>.summary-form form input[type="submit"] {
|
2019-12-30 18:14:04 +08:00
|
|
|
margin-bottom: 1em;
|
2020-04-14 15:08:28 +08:00
|
|
|
}*/
|
2019-12-26 21:31:37 +08:00
|
|
|
|
2020-01-15 17:40:53 +08:00
|
|
|
#root-shop .mobileBtnDisplaySideMenu {
|
|
|
|
background-color: #0d3547;
|
|
|
|
border-bottom-right-radius: 30px;
|
|
|
|
border-top-right-radius: 30px;
|
|
|
|
width: 80px;
|
|
|
|
padding: 5px 0 5px 10px;
|
2020-01-15 19:06:18 +08:00
|
|
|
margin-bottom: -25px;
|
2020-01-15 17:40:53 +08:00
|
|
|
margin-left: -1.3rem;
|
2020-01-15 19:06:18 +08:00
|
|
|
position: relative;
|
|
|
|
z-index: 1;
|
2019-12-30 18:14:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .mobileBtnDisplaySideMenu button,
|
|
|
|
#root-shop .mobileCloseMenu button {
|
2020-01-15 17:40:53 +08:00
|
|
|
-webkit-appearance: none;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
2019-12-30 18:14:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop table tr {
|
|
|
|
padding: .8em 0;
|
|
|
|
display: flex !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-01-15 17:40:53 +08:00
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(0, 0, 0);*/
|
|
|
|
transition: left .3s;
|
2020-01-15 17:40:53 +08:00
|
|
|
width: 310px;
|
2020-01-19 22:07:41 +08:00
|
|
|
left: 0;
|
2020-01-15 17:40:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened + section.main {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(310px, 0, 0);*/
|
|
|
|
transition: left .3s;
|
|
|
|
left: 310px;
|
|
|
|
position: relative;
|
2020-01-19 22:19:48 +08:00
|
|
|
z-index: 0;
|
2020-01-15 17:40:53 +08:00
|
|
|
}
|
|
|
|
|
2020-01-21 00:43:33 +08:00
|
|
|
#root-shop .layout>aside.aside.menu-opened + section.main:after {
|
2020-01-15 17:40:53 +08:00
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-01-22 22:47:10 +08:00
|
|
|
background-color: rgba(0, 0, 0, .3);
|
2020-01-15 17:40:53 +08:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2020-01-15 19:06:18 +08:00
|
|
|
z-index: 10;
|
2020-01-21 00:43:33 +08:00
|
|
|
}
|
2020-01-15 17:40:53 +08:00
|
|
|
|
|
|
|
#root-shop .layout>aside.aside {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(-310px, 0px, 0px);*/
|
|
|
|
transition: left .3s;
|
2020-01-15 17:40:53 +08:00
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
2020-01-19 22:07:41 +08:00
|
|
|
left: -310px;
|
2020-01-15 17:40:53 +08:00
|
|
|
width: 310px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside:after {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside + section.main {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(0, 0, 0);*/
|
|
|
|
transition: left .3s;
|
|
|
|
left: 0;
|
2020-01-15 17:40:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>section.main {
|
|
|
|
flex: 1;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
2020-01-15 19:06:18 +08:00
|
|
|
|
|
|
|
.should-disappear {
|
|
|
|
display: none!important;
|
|
|
|
}
|
2020-01-20 18:29:51 +08:00
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened {
|
|
|
|
overflow: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened > .backlog-container {
|
|
|
|
overflow-y: scroll;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-03-02 21:27:31 +08:00
|
|
|
#root-shop .panel .summary>.summary-price,
|
|
|
|
#root-shop .panel .summary>.summary-form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-06-30 10:10:15 +08:00
|
|
|
|
|
|
|
#accordion_categories button {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: .5rem 0.5rem;
|
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
##Device = Most of the Smartphones Mobiles (Portrait)
|
|
|
|
##Screen = B/w 320px to 479px
|
|
|
|
*/
|
|
|
|
@media (min-width: 320px) and (max-width: 480px) {
|
2020-01-22 22:47:10 +08:00
|
|
|
.feedback-add-success {
|
|
|
|
background-color: green;
|
|
|
|
display: block;
|
|
|
|
position: fixed;
|
|
|
|
top: 20px;
|
|
|
|
right: 20px;
|
|
|
|
padding: 1em;
|
|
|
|
z-index: 100000;
|
|
|
|
color: white;
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0 0 5px 3px;
|
|
|
|
}
|
|
|
|
|
2020-01-21 00:07:53 +08:00
|
|
|
.dropdown-item {
|
|
|
|
font-size: .75em;
|
|
|
|
}
|
2020-01-21 00:43:33 +08:00
|
|
|
/*.sticky-top {
|
2020-01-21 00:07:53 +08:00
|
|
|
position: fixed;
|
2020-01-21 00:43:33 +08:00
|
|
|
}*/
|
2019-12-30 18:34:18 +08:00
|
|
|
.logo > img {
|
|
|
|
height: 20px;
|
|
|
|
}
|
|
|
|
.navbar {
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-bottom: 5px;
|
|
|
|
}
|
|
|
|
|
2019-12-30 18:48:42 +08:00
|
|
|
body {
|
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop, #root-shop>div {
|
2023-07-05 17:45:56 +08:00
|
|
|
height: calc(100vh - 10px - 2.5rem); /* .navbar vertical padding + line height (.navbar-brand.font-size.rem * body.font-size * body.line-height)*/
|
2019-12-30 18:48:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem {
|
|
|
|
padding: 1rem .5rem .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content .price {
|
|
|
|
padding: .3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content h3 {
|
|
|
|
font-size: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:31:37 +08:00
|
|
|
#root-shop .layout>aside.aside.menu-opened {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(0, 0, 0);*/
|
|
|
|
transition: left .3s;
|
2019-12-26 21:31:37 +08:00
|
|
|
width: 310px;
|
2020-01-19 22:07:41 +08:00
|
|
|
left: 0;
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened + section.main {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(310px, 0, 0);*/
|
|
|
|
transition: left .3s;
|
|
|
|
left: 310px;
|
|
|
|
position: relative;
|
2020-01-19 22:19:48 +08:00
|
|
|
z-index: 0;
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
|
2020-01-21 00:43:33 +08:00
|
|
|
#root-shop .layout>aside.aside.menu-opened + section.main:after {
|
2019-12-26 21:31:37 +08:00
|
|
|
content: '';
|
2020-01-22 22:59:25 +08:00
|
|
|
position: fixed;
|
2019-12-26 21:31:37 +08:00
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
2020-01-22 22:47:10 +08:00
|
|
|
background-color: rgba(0, 0, 0, .3);
|
2019-12-26 21:31:37 +08:00
|
|
|
top: 0;
|
|
|
|
bottom: 0;
|
2020-01-21 00:43:33 +08:00
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
|
|
|
|
#root-shop .layout>aside.aside {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(-310px, 0px, 0px);*/
|
|
|
|
transition: left .3s;
|
2019-12-26 21:31:37 +08:00
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
2020-01-19 22:07:41 +08:00
|
|
|
left: -310px;
|
2019-12-26 21:31:37 +08:00
|
|
|
width: 310px;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside:after {
|
|
|
|
width: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside + section.main {
|
2020-01-19 22:07:41 +08:00
|
|
|
/*transform: translate3d(0, 0, 0);*/
|
|
|
|
transition: left .3s;
|
|
|
|
left: 0;
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>section.main {
|
|
|
|
flex: 1;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem {
|
|
|
|
padding: 2rem 1rem 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content img {
|
|
|
|
height: 300px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .productItem .content .price {
|
|
|
|
padding: .5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel {
|
|
|
|
padding: 1.3rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control {
|
|
|
|
flex-direction: column;
|
|
|
|
margin-bottom: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2019-12-30 18:48:42 +08:00
|
|
|
#root-shop .panel h2 {
|
|
|
|
font-size: 1.5rem;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:31:37 +08:00
|
|
|
#root-shop .panel .control > .description,
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .control > .crate-mode {
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price table {
|
|
|
|
font-size: .7rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-form form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .panel .summary>.summary-price tfoot {
|
|
|
|
font-size: .85rem;
|
|
|
|
}
|
|
|
|
|
2020-04-14 15:08:28 +08:00
|
|
|
/*#root-shop .panel .summary>.summary-form form input[type="submit"] {
|
2019-12-26 21:31:37 +08:00
|
|
|
margin-bottom: 1em;
|
2020-04-14 15:08:28 +08:00
|
|
|
}*/
|
2019-12-26 21:31:37 +08:00
|
|
|
|
|
|
|
#root-shop .mobileBtnDisplaySideMenu {
|
|
|
|
background-color: #0d3547;
|
|
|
|
border-bottom-right-radius: 30px;
|
|
|
|
border-top-right-radius: 30px;
|
|
|
|
width: 80px;
|
|
|
|
padding: 5px 0 5px 10px;
|
|
|
|
margin-bottom: 15px;
|
|
|
|
margin-left: -1.3rem;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:51:55 +08:00
|
|
|
#root-shop .mobileBtnDisplaySideMenu button,
|
|
|
|
#root-shop .mobileCloseMenu button {
|
|
|
|
-webkit-appearance: none;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
}
|
|
|
|
|
2019-12-26 22:01:49 +08:00
|
|
|
#root-shop table {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
|
2019-12-26 21:57:38 +08:00
|
|
|
#root-shop table tr {
|
2019-12-26 22:11:54 +08:00
|
|
|
padding: .8em 0;
|
2019-12-26 21:31:37 +08:00
|
|
|
display: flex !important;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
2020-01-20 18:29:51 +08:00
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened {
|
|
|
|
overflow: initial;
|
|
|
|
}
|
|
|
|
|
|
|
|
#root-shop .layout>aside.aside.menu-opened > .backlog-container {
|
|
|
|
overflow-y: scroll;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2020-03-02 21:27:31 +08:00
|
|
|
#root-shop .panel .summary>.summary-price,
|
|
|
|
#root-shop .panel .summary>.summary-form {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2023-06-30 10:10:15 +08:00
|
|
|
|
|
|
|
#accordion_categories button {
|
|
|
|
font-size: 1rem;
|
|
|
|
padding: .5rem 0.5rem;
|
|
|
|
}
|
2019-12-26 21:31:37 +08:00
|
|
|
}
|