mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
19 lines
409 B
CSS
19 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;
|
|
}
|