39 lines
793 B
CSS
39 lines
793 B
CSS
body {
|
|
background-color: #F9FAFB;
|
|
color: #1F2937;
|
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
|
|
}
|
|
|
|
.gradient-text {
|
|
background: linear-gradient(to right, #6366F1, #EC4899);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
text-fill-color: transparent;
|
|
}
|
|
|
|
.btn-primary {
|
|
background-color: #6366F1;
|
|
border-color: #6366F1;
|
|
}
|
|
|
|
.btn-primary:hover {
|
|
background-color: #4f52c4;
|
|
border-color: #4f52c4;
|
|
}
|
|
|
|
.hero-section {
|
|
padding: 6rem 0;
|
|
background-color: #FFFFFF;
|
|
}
|
|
|
|
.editor-section {
|
|
background-color: #F9FAFB;
|
|
padding: 4rem 0;
|
|
}
|
|
|
|
.card {
|
|
border: none;
|
|
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
|
|
}
|