mirror of
https://github.com/kognise/water.css.git
synced 2025-12-06 06:44:58 +01:00
I installed and configured stylelint and eslint, and added an editorconfig as well as a vscode recommended extensions file. The reason the diff is so large is I ran the linters and fixed all the linting issues.
29 lines
446 B
CSS
29 lines
446 B
CSS
code,
|
|
samp,
|
|
time {
|
|
background: var(--background);
|
|
color: var(--code);
|
|
padding: 2.5px 5px;
|
|
border-radius: 6px;
|
|
font-size: 1em;
|
|
}
|
|
|
|
pre > code {
|
|
padding: 10px;
|
|
display: block;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
var {
|
|
color: var(--variable);
|
|
font-style: normal;
|
|
font-family: monospace;
|
|
}
|
|
|
|
kbd {
|
|
background: var(--background);
|
|
border: 1px solid var(--border);
|
|
border-radius: 2px;
|
|
color: var(--text-main);
|
|
padding: 2px 4px 2px 4px;
|
|
}
|