feat: remove unused bubbles styles

This commit is contained in:
Sebin Nyshkim 2022-01-28 23:48:25 +01:00
parent f2463b6163
commit bcac65ea8d

View file

@ -14,12 +14,13 @@
text-size-adjust: 100%;
}
html,
body {
background-color: lighten($bg-color-dark, 25%);
&.scroll-lock {
overflow: hidden;
min-height: 100%;
}
body.scroll-lock {
overflow: hidden;
}
h1,
@ -55,35 +56,10 @@ a {
color: $copy-color;
}
.bubbles {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow: hidden;
z-index: -1;
&::before,
&::after {
content: "";
position: absolute;
border-radius: 100%;
}
&::before {
background-color: rgba(lighten($bg-color-dark, 10%), 0.7);
height: 80vw;
width: 80vw;
bottom: -45vw;
right: -25vw;
}
&::after {
background-color: rgba(lighten($bg-color-dark, 10%), 0.7);
height: 80vw;
width: 80vw;
bottom: -25vw;
right: -50vw;
}
blockquote {
font-style: italic;
background: linear-gradient(90deg, rgba(#000, 0.5), transparent);
margin: 0;
border-left: 0.125em solid $sebin-secondary;
padding: 1em;
}