32 lines
507 B
CSS
32 lines
507 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
:root {
|
|
--mauve: #8b7b8b;
|
|
--ugly-yellow: #d4a574;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Be Vietnam Pro', sans-serif;
|
|
}
|
|
: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;
|
|
}
|
|
|
|
|
|
|