Website/styles/globals.css

56 lines
934 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;
2022-02-15 17:08:29 +00:00
font-family: 'Manrope';
2022-02-17 16:17:35 +00:00
background-color: #14141d;
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;
}
.whatIsItLikeInsideSteve {
background-position-x: 0px
}
2021-12-21 19:08:36 +00:00
2021-10-24 17:04:22 +00:00
* {
box-sizing: border-box;
2022-02-15 17:08:29 +00:00
mix-blend-mode: normal;
2021-10-24 17:04:22 +00:00
}