Skip to content

Latest commit

 

History

History
85 lines (65 loc) · 1.66 KB

style-guide.md

File metadata and controls

85 lines (65 loc) · 1.66 KB

Essential Stuff

Html import links

Google font

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:wght@500;700&display=swap" rel="stylesheet">

Ionicon

<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script>
<script nomodule src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.js"></script>

Colors

--white: hsla(0, 0%, 100%, 1);
--white_a8: hsla(0, 0%, 100%, 0.08);
--white_a12: hsla(0, 0%, 100%, 0.12);
--cultured: hsla(220, 20%, 97%, 1);
--snow: hsla(345, 57%, 97%, 1);
--manatee: hsla(219, 10%, 62%, 1);
--black-coral: hsla(220, 12%, 43%, 1);
--cadet-blue-crayola_a20: hsla(222, 23%, 71%, 0.2);
--cinnamon-satin: hsla(344, 53%, 62%, 1);
--raisin-black: hsla(216, 14%, 14%, 1);
--raisin-black_a6: hsla(216, 14%, 14%, 0.06);
--gunmetal: hsla(214, 15%, 21%, 1);
--charcoal: hsla(219, 22%, 26%, 1);

Typography

--ff-manrope: 'Manrope', sans-serif;

--fs-1: calc(2.7rem + 1.38vw);
--fs-2: calc(2.6rem + .66vw);
--fs-3: calc(2.6rem + .24vw);
--fs-4: 1.9rem;
--fs-5: 1.8rem;
--fs-6: 1.7rem;
--fs-7: 1.5rem;
--fs-8: 1.4rem;

--fw-700: 700;

Spacing

--section-padding: 90px;

Shadow

--shadow-1: 0 0 20px hsla(216, 14%, 14%, 0.05);
--shadow-2: 0 4px 28px hsla(216, 14%, 14%, 0.07);

Border Radius

--radius-circle: 50%;
--radius-pill: 100px;
--radius-8: 8px;
--radius-6: 6px;

Transition

--transition-1: 0.25s ease;
--transition-2: 0.5s ease;
--transition-3: 0.3s ease-in-out;