Path: blob/main/ehtsite/assets/scss/config/_variables.scss
3053 views
/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
/*=============== VARIABLES CSS ===============*/
:root{
/*========== Colors ==========*/
/*Color mode HSL(hue, saturation, lightness)*/
/*
Blue: hsl(207, 90%, 61%)
Purple: hsl(250, 66%, 75%)
Pink: hsl(356, 66%, 75%)
Teal: hsl(174, 63%, 62%)
*/
--hue: 207;
--sat: 90%;
--lig: 61%;
--first-color: hsl(var(--hue), var(--sat), var(--lig));
--first-color-alt: hsl(var(--hue), var(--sat), 57%); /* -4% */
--title-color: hsl(var(--hue), 12%, 15%);
--text-color: hsl(var(--hue), 12%, 45%);
--text-color-light: hsl(var(--hue), 8%, 75%);
--text-color-lighten: hsl(var(--hue), 8%, 92%);
--body-color: hsl(var(--hue), 100%, 99%);
--container-color: #fff;
/*========== Font and typography ==========*/
/*.5rem = 8px | 1rem = 16px ...*/
--body-font: 'Poppins', sans-serif;
--h2-font-size: 1.25rem;
--h3-font-size: 1rem;
--normal-font-size: .938rem;
--small-font-size: .813rem;
--smaller-font-size: .75rem;
// Responsive typography
@media screen and (min-width: 968px){
--h2-font-size: 1.5rem;
--h3-font-size: 1.25rem;
--normal-font-size: 1rem;
--small-font-size: .875rem;
--smaller-font-size: .813rem;
}
}