2019-05-07 19:25:51 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
.woocommerce-profile-wizard__body {
|
2019-05-21 15:47:18 +00:00
|
|
|
background: $muriel-gray-0;
|
|
|
|
color: $muriel-gray-600;
|
2019-05-07 19:25:51 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
|
|
|
|
'Helvetica Neue', sans-serif;
|
|
|
|
|
2019-05-22 16:19:56 +00:00
|
|
|
.woocommerce-profile-wizard__container a {
|
|
|
|
color: $muriel-gray-600;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-card {
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
color: $muriel-gray-800;
|
|
|
|
}
|
|
|
|
color: $muriel-gray-600;
|
|
|
|
text-align: left;
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-17 03:04:52 +00:00
|
|
|
.woocommerce-profile-wizard__header {
|
|
|
|
height: 56px;
|
2019-05-21 15:47:18 +00:00
|
|
|
border-bottom: 1px solid $muriel-gray-50;
|
2019-05-17 03:04:52 +00:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
svg > g {
|
|
|
|
transform: translateX(25%);
|
|
|
|
}
|
2019-05-21 15:47:18 +00:00
|
|
|
|
|
|
|
.woocommerce-profile-wizard__plus {
|
|
|
|
stroke: $muriel-gray-800;
|
|
|
|
}
|
2019-05-17 03:04:52 +00:00
|
|
|
}
|
|
|
|
|
2019-05-07 19:25:51 +00:00
|
|
|
.woocommerce-profile-wizard__header-title {
|
2019-05-21 15:47:18 +00:00
|
|
|
color: $muriel-gray-800;
|
2019-05-07 19:25:51 +00:00
|
|
|
font-size: 24px;
|
|
|
|
line-height: 32px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-profile-wizard__container {
|
2019-05-17 03:04:52 +00:00
|
|
|
margin-top: $gap-larger;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
2019-05-22 16:19:56 +00:00
|
|
|
max-width: 476px;
|
2019-05-17 03:04:52 +00:00
|
|
|
|
2019-05-22 16:19:56 +00:00
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
padding-left: $gap;
|
|
|
|
padding-right: $gap;
|
2019-05-17 03:04:52 +00:00
|
|
|
}
|
|
|
|
|
2019-05-22 16:19:56 +00:00
|
|
|
p,
|
|
|
|
div {
|
2019-05-07 19:25:51 +00:00
|
|
|
font-size: 16px;
|
|
|
|
line-height: 24px;
|
|
|
|
font-weight: 400;
|
|
|
|
}
|
2019-05-22 16:19:56 +00:00
|
|
|
|
|
|
|
.woocommerce-card ~ p {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
2019-05-07 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#woocommerce-layout__primary {
|
|
|
|
text-align: center;
|
2019-05-17 03:04:52 +00:00
|
|
|
margin: 0;
|
|
|
|
width: 100%;
|
2019-05-07 19:25:51 +00:00
|
|
|
}
|
|
|
|
|
2019-05-14 03:21:14 +00:00
|
|
|
.woocommerce-layout .woocommerce-layout__main {
|
|
|
|
padding-right: 0;
|
|
|
|
}
|
|
|
|
|
2019-05-07 19:25:51 +00:00
|
|
|
/* Hide wp-admin and WooCommerce elements when viewing the profile wizard*/
|
|
|
|
#adminmenumain,
|
|
|
|
#wpadminbar,
|
2019-05-14 03:21:14 +00:00
|
|
|
.woocommerce-layout__header,
|
|
|
|
.update-nag,
|
|
|
|
.woocommerce-store-alerts,
|
|
|
|
.woocommerce-message,
|
|
|
|
.notice,
|
|
|
|
.error,
|
|
|
|
.updated {
|
2019-05-07 19:25:51 +00:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#wpcontent {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2019-05-20 17:49:26 +00:00
|
|
|
|
|
|
|
#wpbody {
|
|
|
|
padding-top: 0;
|
|
|
|
}
|
2019-05-07 19:25:51 +00:00
|
|
|
}
|
2019-05-23 12:10:42 +00:00
|
|
|
|
|
|
|
.woocommerce-profile-wizard__plugins-card {
|
|
|
|
.woocommerce-stepper {
|
|
|
|
box-shadow: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-profile-wizard__plugins-actions {
|
|
|
|
text-align: left;
|
|
|
|
margin-left: 64px;
|
|
|
|
|
|
|
|
button {
|
|
|
|
display: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|