12 lines
No EOL
176 B
CSS
12 lines
No EOL
176 B
CSS
:root {
|
|
--text: #212121;
|
|
--background: #fff;
|
|
}
|
|
|
|
body {
|
|
color: var(--text);
|
|
background-color: var(--background);
|
|
font-size: 15px;
|
|
line-height: 22px;
|
|
width: 350px;
|
|
} |