mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
18 lines
409 B
CSS
18 lines
409 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
:root {
|
|
--primary-color: #605dc8;
|
|
--secondary-color: #8b89e6;
|
|
--accent-color: #e8e7fa;
|
|
--shadow-color: #e8e8e8;
|
|
}
|
|
|
|
button.primary {
|
|
padding: 10px;
|
|
border: solid 1px var(--primary-color);
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border-radius: 8px;
|
|
}
|
|
body {
|
|
font-family: 'Be Vietnam Pro', sans-serif;
|
|
}
|