bravo68web-portfolio-nextjs/styles/globals.css

84 lines
1.6 KiB
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
2022-04-02 19:52:51 +00:00
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro");
:root {
--color1: #11052c;
--color2: #3d087b;
--color3: #f43b86;
--color4: #ffe459;
--color5: #16b2fa;
--color6: #0ff558;
--color7: #f4f4f4;
--color8: #f58a0f;
--color9: #f5a80f;
--color10: #0ffaac;
--font: "Source Code Pro", monospace;
2022-04-13 20:37:06 +00:00
--color-cursor: 220, 90, 90;
--cursor-outline-shade: 0.3;
--cursor-size: 10px;
--cursor-outline-size: 12px;
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 {
2022-04-02 19:52:51 +00:00
overflow: 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: var(--color7);
2022-08-19 18:03:24 +00:00
/* cursor: none; */
2021-11-30 16:36:48 +00:00
}
a {
color: inherit;
text-decoration: none;
}
* {
box-sizing: border-box;
}
2022-04-13 20:37:06 +00:00
2022-08-19 18:03:24 +00:00
/* .cursor {
width: 20px;
height: 20px;
border: 1px solid white;
border-radius: 50%;
position: absolute;
pointer-events: none;
z-index: 100;
}
.cursor::after {
content: "";
width: 20px;
height: 20px;
position: absolute;
border: 2px solid blue;
border-radius: 50%;
opacity: .5;
top: -8px;
left: -8px;
}
@keyframes cursorAnim {
0% {
transform: scale(1);
}
50% {
transform: scale(5);
}
100% {
transform: scale(1);
opacity: 0;
}
}
2022-04-13 20:37:06 +00:00
.expand {
animation: cursorAnim .5s forwards;
2022-08-19 18:03:24 +00:00
} */