mirror of
https://github.com/a-mayb3/KanbanCloneAngular.git
synced 2026-03-21 18:05:38 +01:00
18 lines
No EOL
393 B
CSS
18 lines
No EOL
393 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
:root{
|
|
--background-color: whitesmoke;
|
|
--primary-color: #4a90e2;
|
|
--secondary-color: #f5f5f5;
|
|
--text-color: black;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
|
|
width: 100%;
|
|
height: fit-content;
|
|
|
|
font-family: Arial, sans-serif;
|
|
background-color: var(--background-color);
|
|
color: var(--text-color);
|
|
} |