20 lines
356 B
CSS
20 lines
356 B
CSS
:root {
|
|
--main: #943ec5;
|
|
--text: #212121;
|
|
--background: #fff;
|
|
--scrollbar: #ccc;
|
|
--navbar: #943ec5;
|
|
--icon: #aab7b8;
|
|
--border: #f0f3f4;
|
|
}
|
|
|
|
body {
|
|
color: var(--text);
|
|
background-color: var(--background);
|
|
font-size: 13px;
|
|
line-height: 22px;
|
|
width: 320px;
|
|
height: 300px;
|
|
margin: 0;
|
|
font-family: 'Segoe UI', Tahoma, sans-serif;
|
|
}
|