Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
-
- * {
- box-sizing: border-box;
- margin: 0;
- padding: 0;
- text-decoration: none;
- outline: none;
- font-family: 'Poppins', sans-serif;
- }
-
- :root {
- --orange: #f1be83;
- --red: #d47077;
- --blue: #668fe1;
- --dark-blue: #11253d;
- --teal: #4e9096;
- --black: #11253d;
- --brownish-black: #472020;
- --grey: #586471;
- --light-grey: #84919e;
- --lighter-grey: #d5e0ec;
- --creamy-white: #fef8ec;
- font-size: 62.5%;
- }
-
- .page {
- width: 100vw;
- height: 100vh;
- background-color: var(--creamy-white);
- overflow: auto;
- position: relative;
- padding-bottom: 100px;
- }
|