mirror of
https://github.com/pawelmalak/flame.git
synced 2024-12-22 09:41:33 +03:00
37 lines
786 B
CSS
37 lines
786 B
CSS
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
/* transition: all 0.3s; */
|
|
user-select: none;
|
|
}
|
|
|
|
body {
|
|
--color-background: #2B2C56;
|
|
--color-primary: #EFF1FC;
|
|
--color-accent: #6677EB;
|
|
|
|
background-color: var(--color-background);
|
|
transition: background-color 0.3s;
|
|
/* font weights
|
|
light 300
|
|
regular 400
|
|
semi-bold 600
|
|
bold 700
|
|
extra-bold 800
|
|
*/
|
|
font-family: -apple-system, BlinkMacSystemFont, Helvetica Neue, Roboto, sans-serif;
|
|
font-size: 14px;
|
|
}
|
|
|
|
a {
|
|
color: var(--color-primary);
|
|
text-decoration: none;
|
|
/* opacity: 0.75; */
|
|
}
|
|
|
|
/* 320px — 480px: Mobile devices.
|
|
481px — 768px: iPads, Tablets.
|
|
769px — 1024px: Small screens, laptops.
|
|
1025px — 1200px: Desktops, large screens.
|
|
1201px and more — Extra large screens, TV. */ |