1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-08-09 20:45:17 +02:00
flame/client/src/index.css

22 lines
427 B
CSS
Raw Normal View History

2021-05-07 18:30:06 +02:00
* {
2021-05-06 19:03:31 +02:00
margin: 0;
2021-05-07 18:30:06 +02:00
padding: 0;
box-sizing: border-box;
2021-05-06 19:03:31 +02:00
}
2021-05-07 18:30:06 +02:00
body {
--color-background: #2B2C56;
--color-primary: #EFF1FC;
--color-accent: #6677EB;
--spacing-ui: 10px;
2021-05-07 18:30:06 +02:00
background-color: var(--color-background);
2021-05-10 19:02:16 +02:00
transition: background-color 0.3s;
2021-05-07 18:30:06 +02:00
font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
2021-05-09 18:36:55 +02:00
font-size: 14px;
}
a {
color: var(--color-primary);
text-decoration: none;
2021-05-25 11:44:11 +02:00
}