portfoligor/assets/scss/main.scss

81 lines
1.4 KiB
SCSS
Raw Normal View History

////////////////////
// //
// Includes //
// //
////////////////////
@use "@picocss/pico/scss/pico" with (
$theme-color: "purple",
$enable-semantic-container: true,
$enable-responsive-spacings: true,
$modules: (
// deactive unused modules
"forms/input-color": false,
"forms/input-date": false,
"forms/input-file": false,
"forms/input-range": false,
"forms/input-search": false,
"components/card": false,
"components/dropdown": false,
"components/loading": false,
"components/modal": false,
"components/progress": false,
"components/tooltip": false,
),
// Limit the viewport width for large screen
$breakpoints: (
lg: (
viewport: 920px,
),
xl: (
viewport: 920px,
),
xxl: (
viewport: 920px,
),
)
);
@use "font-face";
@use "variables";
/* @import 'grid';
@import 'mixins';
@import 'colors';
@import 'fonts';
@import 'footer';
@import 'header';
@import 'layout';
@import 'lists';
@import 'main_body';
@import 'medias';
@import 'post';
@import 'texts'; */
////////////////////
// //
// Divers //
// //
////////////////////
/* code,
pre {
border-radius: 5px;
padding: .2rem;
}
pre {
max-width: 95vw;
overflow: auto;
}
.terms {
display: flex;
flex-wrap: wrap;
}
.term {
margin-right: 1rem;
} */