This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
_s/sass/woocommerce.scss

68 lines
1.3 KiB
SCSS
Raw Normal View History

2017-08-01 13:21:13 +00:00
/*
Theme Name: _s
WooCommerce styles override
*/
/**
* WooCommerce Plugin path variables
*/
$woocommerce__plugin-path: '../../plugins/woocommerce/';
$woocommerce__plugin-assets-font-path: '#{$woocommerce__plugin-path}assets/fonts/';
2017-08-01 13:21:13 +00:00
/**
* WooCommerce color variables
*/
$woocommerce__color-error: #e2401c;
$woocommerce__color-success: #0f834d;
$woocommerce__color-info: #3D9CD2;
/**
* Imports
*/
@import "variables-site/variables-site";
@import "mixins/mixins-master";
/**
* Fonts
*/
@font-face {
font-family: 'star';
src: url('#{$woocommerce__plugin-assets-font-path}star.eot');
src: url('#{$woocommerce__plugin-assets-font-path}star.eot?#iefix') format('embedded-opentype'),
url('#{$woocommerce__plugin-assets-font-path}star.woff') format('woff'),
url('#{$woocommerce__plugin-assets-font-path}star.ttf') format('truetype'),
url('#{$woocommerce__plugin-assets-font-path}star.svg#star') format('svg');
2017-08-01 13:21:13 +00:00
font-weight: normal;
font-style: normal;
}
/**
* Shop tables
*/
@import "shop/tables";
/**
* Products
*/
@import "shop/products";
/**
* Single product
*/
@import "shop/single-product";
/**
* Checkout
*/
@import "shop/checkout";
/**
* General WooCommerce components
*/
@import "shop/components";
/**
* WooCommerce widgets
*/
@import "shop/widgets";