mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
731 B
SCSS
45 lines
731 B
SCSS
// Fonts
|
|
@import 'vazirmatn/Vazirmatn-font-face.css';
|
|
@import "remixicon/fonts/remixicon.css";
|
|
// Variables
|
|
@import 'variables';
|
|
|
|
// Bootstrap
|
|
@import 'bootstrap/scss/bootstrap';
|
|
|
|
*{
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
body{
|
|
min-height: 100vh;
|
|
overflow-x: hidden;
|
|
cursor: default;
|
|
}
|
|
a{
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
#panel{
|
|
display: grid;
|
|
grid-template-columns:50px 0 1fr;
|
|
transition: 400ms;
|
|
|
|
>aside{
|
|
background-image: url("../images/pattern.png");
|
|
background-color: #282c34;
|
|
}
|
|
&.sided{
|
|
grid-template-columns:50px 250px 1fr;
|
|
#sidebar-panel{
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@import "common";
|
|
@import "raw";
|
|
@import "fix";
|
|
@import "navbar";
|