demo.css — svelte Source File
Architecture documentation for demo.css, a css file in the svelte codebase.
Entity Profile
Source Code
body {
--bg-1: hsl(0, 0%, 100%);
--bg-2: hsl(206, 20%, 90%);
--bg-3: hsl(206, 20%, 80%);
--fg-1: hsl(0, 0%, 13%);
--fg-2: hsl(0, 0%, 20%);
--fg-2: hsl(0, 0%, 30%);
--link: hsl(208, 77%, 47%);
--link-hover: hsl(208, 77%, 55%);
--link-active: hsl(208, 77%, 40%);
--border-radius: 4px;
--font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
'Open Sans', 'Helvetica Neue', sans-serif;
--font-mono: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono',
monospace;
background: var(--bg-1);
color: var(--fg-1);
font-family: var(--font);
line-height: 1.5;
margin: 1rem;
height: calc(100vh - 2rem);
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: normal;
font-variant-numeric: tabular-nums;
line-height: 1.1;
}
:is(h1, h2, h3, h4, h5, h6, p) {
margin: 1rem 0.1rem;
}
label {
margin: 0.5rem 0.1rem;
}
:is(h1, h2, h3, h4, h5, h6, p, label):first-child {
margin-top: 0;
}
:is(h1, h2, h3, h4, h5, h6, p, label):last-child {
margin-bottom: 0;
}
a {
color: var(--link);
}
a:hover {
color: var(--link-hover);
}
a:active {
color: var(--link-active);
// ... (187 more lines)
Source
Frequently Asked Questions
What does demo.css do?
demo.css is a source file in the svelte codebase, written in css.
Where is demo.css in the architecture?
demo.css is located at playgrounds/sandbox/demo.css (directory: playgrounds/sandbox).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free