Website/styles/globals.css

53 lines
974 B
CSS
Raw Normal View History

2021-12-21 19:08:36 +00:00
:root {
--size-width: 100vw;
}
2021-11-01 11:36:45 +00:00
@font-face {
font-family: 'Consolas';
src: url('/Consolas.woff') format('woff');
}
@font-face {
font-family: 'Reef';
src: url('/Reef.woff') format('woff');
}
@font-face {
font-family: 'Manrope';
src: url('/Manrope.woff') format('woff');
}
2021-12-21 19:08:36 +00:00
@font-face {
font-family: 'Charger';
src: url('/Charger.woff') format('woff');
}
@font-face {
font-family: 'Mangabey';
src: url('/Mangabey.woff') format('woff');
}
2021-10-24 17:04:22 +00:00
html,
body {
padding: 0;
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
2021-12-21 19:08:36 +00:00
background-color: #21212c;
2021-11-01 11:36:45 +00:00
color: white;
2021-12-21 19:08:36 +00:00
overflow-x: hidden;
2021-10-24 17:04:22 +00:00
}
a {
color: inherit;
text-decoration: none;
}
2021-12-21 19:08:36 +00:00
.steve {
filter: hue-rotate(20deg) brightness(1) contrast(1.2) saturate(1.8) blur(5px);
opacity: 0.8;
mix-blend-mode: screen;
scale: 1.4;
user-select: none;
}
2021-10-24 17:04:22 +00:00
* {
box-sizing: border-box;
}