forked from andika/membership-fe
33 lines
666 B
CSS
33 lines
666 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
|
|
background-color: #FFFFFF;
|
|
color: #422268;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
font-family: 'Inter', sans-serif;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.inter {
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
.nunito-sans {
|
|
font-family: 'Nunito Sans', sans-serif;
|
|
}
|
|
|
|
.bg-purple-gradient {
|
|
background: linear-gradient(135deg, rgba(100, 76, 159, 0.2) 0%, rgba(72, 40, 110, 0.2) 100%);
|
|
}
|
|
|
|
.bg-soft-mesh {
|
|
background: radial-gradient(ellipse at top right, rgba(221, 216, 235, 0.4) 0%, #FFFFFF 50%, #FFFFFF 100%);
|
|
}
|