initial commit
This commit is contained in:
31
frontend/src/index.css
Normal file
31
frontend/src/index.css
Normal file
@@ -0,0 +1,31 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');
|
||||
|
||||
*, *::before, *::after {
|
||||
box-sizing: border-box;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
:root {
|
||||
--pink: #D4637A;
|
||||
--pink-light: #F2A0B0;
|
||||
--pink-pale: #FAE8EC;
|
||||
--green: #6B8F6B;
|
||||
--cream: #FDF8F5;
|
||||
--text: #3A2828;
|
||||
--text-muted: #9A7575;
|
||||
}
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background: var(--cream);
|
||||
color: var(--text);
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-weight: 300;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
}
|
||||
Reference in New Issue
Block a user