32 lines
692 B
SCSS
32 lines
692 B
SCSS
// Neutral colors
|
|
$light-light-gray: #fcfcfc;
|
|
$light-gray: #eeeeee;
|
|
$less-light-gray: #cccccc;
|
|
$less-less-light-gray: #bbbbbb;
|
|
$yellow: #f7ff29;
|
|
$dark-gray: #1a1a1a;
|
|
$less-dark-gray: #3e3e3e;
|
|
|
|
// Theme colors
|
|
$laboratoire: #e0775d;
|
|
$manifestations: #7cc0c6;
|
|
$mediations: #e05680;
|
|
$publications: #46ae51;
|
|
$ressources: #bb8dd9;
|
|
|
|
// Fonts
|
|
$font-primary: 'NewsCycle', sans-serif;
|
|
$font-heading: 'Gelasio', serif;
|
|
|
|
// Breakpoints
|
|
$breakpoint-tablet: 768px;
|
|
$breakpoint-desktop: 1024px;
|
|
$breakpoint-large: 1440px;
|
|
|
|
// Media queries (mobile first)
|
|
$tablet: 'min-width: #{$breakpoint-tablet}';
|
|
$desktop: 'min-width: #{$breakpoint-desktop}';
|
|
$large: 'min-width: #{$breakpoint-large}';
|
|
|
|
// Fonts sizes
|