CSS Spring Cleaning #3

Merged
wonderfulfrog merged 3 commits from feat/update-css into main 2025-05-28 21:45:59 -07:00
3 changed files with 1 additions and 30 deletions
Showing only changes of commit e4c64cf310 - Show all commits

View file

@ -1,35 +1,14 @@
/* Global variables */
:root {
--transition-duration: 250ms;
--transition-timing: ease;
--transition-bounce: cubic-bezier(0.3, 1.6, 0.35, 1.25);
--color-white: white;
--color-black: black;
--text-skew: skew(0deg, -1deg);
--font-weight-normal: 300;
--font-weight-bold: 700;
--font-weight-black: 900;
--triangles: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><path stroke-width="0" d="M0,0 40,40 80,0z" /></svg>');
--transition-bounce: linear(
0,
0.544 5.5%,
0.947 11.5%,
1.213 18.1%,
1.298 21.7%,
1.352 25.5%,
1.372 28.2%,
1.379 31.1%,
1.374 34.2%,
1.357 37.6%,
1.307 43.7%,
1.121 61.8%,
1.074 67.8%,
1.04 73.7%,
1.007 84.7%,
1
);
}

View file

@ -27,10 +27,6 @@
flex-wrap: wrap;
}
.flex-nowrap {
flex-wrap: nowrap;
}
.flex-1 {
flex: 1;
}

View file

@ -33,7 +33,3 @@
.line-height-xl {
line-height: 2rem;
}
.text-skew {
transform: var(--text-skew);
}