28 lines
578 B
CSS
28 lines
578 B
CSS
|
|
.inner {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
padding-top: calc(var(--mantine-spacing-xl));
|
|
}
|
|
|
|
.content {
|
|
max-width: 480px;
|
|
}
|
|
|
|
.title {
|
|
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
|
|
font-family:
|
|
Greycliff CF,
|
|
var(--mantine-font-family);
|
|
font-size: 44px;
|
|
line-height: 1.2;
|
|
font-weight: 900;
|
|
}
|
|
|
|
.highlight {
|
|
position: relative;
|
|
background-color: var(--mantine-color-blue-light);
|
|
border-radius: var(--mantine-radius-sm);
|
|
padding: 4px 12px;
|
|
} |