bravo68web-portfolio-nextjs/styles/globals.css

35 lines
707 B
CSS
Raw Normal View History

@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200;300;400;500;600;700;800;900&display=swap");
2022-01-05 06:31:08 +00:00
:root {
--color1: #11052c;
--color2: #3d087b;
--color3: #f43b86;
--color4: #ffe459;
--font: "Source Code Pro", monospace;
2022-01-05 06:31:08 +00:00
}
* {
margin: 0;
padding: 0;
2022-01-05 06:31:08 +00:00
}
2021-11-30 16:36:48 +00:00
html,
body {
overflow-x: hidden;
2022-01-05 06:31:08 +00:00
background: var(--color2);
2021-11-30 16:36:48 +00:00
padding: 0;
margin: 0;
font-family: var(--font), -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
height: 100vh;
width: 100vw;
2022-01-05 06:31:08 +00:00
/* color:var(--color3) */
color: #fff;
2021-11-30 16:36:48 +00:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}