mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-11-04 17:30:11 +00:00
Harvey Tindall
47d00d1f27
uncss was clearing out the "block" and "animate-fade-in/out", so removed that step since tailwind does a similar thing anyway.
15 lines
360 B
CSS
15 lines
360 B
CSS
@import "../css/base.css";
|
|
@import "../css/modal.css";
|
|
|
|
:root {
|
|
--c-1: #ffe3ef;
|
|
--c-2: rgba(173, 201, 233, 0.4);
|
|
--grad-base: rgb(238,174,202);
|
|
--grad: linear-gradient(45deg, rgba(238,174,202,0.5) 0%, rgba(148,187,233,0.5) 100%);
|
|
}
|
|
|
|
body {
|
|
background: #AA5CC3;
|
|
background: linear-gradient(90deg, #AA5CC3 0%, #00A4DC 100%) !important;
|
|
}
|