mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
* N°7793 Add common SCSS variables between backoffice and end-user portal * Add shame & readme * Move font face to common * Inherit color functions * Move font icon to common * FIx breaking change introduced in lifecycle palette * FIx breaking change introduced in base * Move approot url to common * Make highlightjs common variables more coherent with 3.2.1 commonization approach * Deprecated and migrate the usage of ibo-adjust-alpha and ibo-adjust-lightness
39 lines
1.8 KiB
SCSS
39 lines
1.8 KiB
SCSS
/*
|
|
* @copyright Copyright (C) 2010-2024 Combodo SAS
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
/* Base size: html font-size 12px */
|
|
$common-font-size-20: 0.67rem !default; /* 8px */
|
|
$common-font-size-50: 0.83rem !default; /* 10px */
|
|
$common-font-size-100: 1rem !default; /* 12px */
|
|
$common-font-size-150: 1.17rem !default; /* 14px */
|
|
$common-font-size-200: 1.33rem !default; /* 16px */
|
|
$common-font-size-250: 1.5rem !default; /* 18px */
|
|
$common-font-size-300: 1.67rem !default; /* 20px */
|
|
$common-font-size-350: 1.83rem !default; /* 22px */
|
|
$common-font-size-400: 2rem !default; /* 24px */
|
|
$common-font-size-450: 2.5rem !default; /* 30px */
|
|
$common-font-size-500: 3rem !default; /* 36px */
|
|
$common-font-size-550: 4rem !default; /* 48px */
|
|
$common-font-size-600: 5rem !default; /* 60px */
|
|
$common-font-size-650: 6rem !default; /* 72px */
|
|
$common-font-size-700: 7rem !default; /* 84px */
|
|
|
|
/* Value Common weight name (https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight) */
|
|
$common-font-weight-100: 100 !default; /* 100 Thin (Harline) */
|
|
$common-font-weight-200: 200 !default; /* 200 Extra Light (Ultra Light) */
|
|
$common-font-weight-300: 300 !default; /* 300 Light */
|
|
$common-font-weight-400: 400 !default; /* 400 Normal (Regular) */
|
|
$common-font-weight-500: 500 !default; /* 500 Medium */
|
|
$common-font-weight-600: 600 !default; /* 600 Semi Bold (Demi Bold) */
|
|
$common-font-weight-700: 700 !default; /* 700 Bold */
|
|
$common-font-weight-800: 800 !default; /* 800 Extra Bold (Ultra Bold) */
|
|
$common-font-weight-900: 900 !default; /* 900 Black (Heavy) */
|
|
$common-font-weight-950: 950 !default; /* 950 Extra Black (Ultra Black) */
|
|
|
|
$common-font-family-base: "Raleway" !default;
|
|
$common-font-family-fallbacks: "sans-serif", "system-ui" !default;
|
|
$common-font-family-monospace: monospace !default;
|
|
$common-font-family-code: $common-font-family-monospace !default;
|