julienmonnerie/assets/css/partials/variables.scss

41 lines
1.1 KiB
SCSS
Raw Normal View History

2022-06-17 17:51:59 +02:00
// ----------------------------------------------------------------------------
// VARIABLES
// ----------------------------------------------------------------------------
:root {
2022-09-09 15:26:04 +02:00
// Fonts
2022-12-20 11:43:50 +01:00
--text-font-family: Helvetica, Arial, sans-serif;
--title-font-family: Helvetica, Arial, sans-serif;
2022-09-09 15:26:04 +02:00
--regular-font-weight: 400;
--medium-font-weight: 500;
--semi-bold-font-weight: 600;
--bold-font-weight: 700;
2022-12-20 11:43:50 +01:00
--text-font-size: 0.9rem;
--text-line-height: calc(var(--text-font-size) * 1);
2022-09-09 15:26:04 +02:00
--footnote-font-size: 0.8rem;
--footnote-line-height: calc(var(--footnote-font-size) * 1.2);
--h1-font-size: 1.6rem;
--h1-line-height: calc(var(--h1-font-size) * 1.2);
--h2-font-size: 1.4rem;
--h2-line-height: calc(var(--h2-font-size) * 1.2);
--h3-font-size: 1.2rem;
--h3-line-height: calc(var(--h3-font-size) * 1.2);
// Dimensions
2022-11-22 17:41:17 +01:00
--icon-size: 3.2rem;
2022-09-27 16:42:28 +02:00
--sidebar-padding: 0.8rem;
2022-09-09 15:26:04 +02:00
// Colors
--black: #000;
--white: #fff;
2022-06-17 17:51:59 +02:00
}
// Media queries
$tablet-media-query: 48rem;
$desktop-media-query: 62rem;