mirror of https://github.com/4xmen/xshop.git
added client asset generator [WIP]
parent
56e7c39248
commit
7552e86c6b
@ -0,0 +1 @@
|
||||
@import "remixicon/fonts/remixicon.css";
|
@ -0,0 +1,9 @@
|
||||
body{
|
||||
background: var(--xshop-background);
|
||||
color: var(--xshop-text);
|
||||
}
|
||||
|
||||
h1{
|
||||
color: var(--xshop-primary);
|
||||
text-shadow: var(--xshop-shadow);
|
||||
}
|
@ -1,5 +1,13 @@
|
||||
*{
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
// PLEASE DO NOT EDIT THIS FILE,
|
||||
// IF YOU WANT ADD ANY CODE CREATE NEW SCSS INTO client-custom
|
||||
:root{
|
||||
--xshop-background:#eeeeee;
|
||||
--xshop-primary:#81c700;
|
||||
--xshop-secondary:#00eeff;
|
||||
--xshop-text:#111111;
|
||||
--border-radius:7px;
|
||||
--xshop-shadow:5px 10px 31px #ff00f7;
|
||||
}
|
||||
|
||||
@import "client-custom/assetsNode";
|
||||
@import "client-custom/test";
|
||||
|
Loading…
Reference in New Issue