Remove src/ folder
This commit is contained in:
parent
632b1113d2
commit
370ebd4e0e
|
@ -9,7 +9,7 @@ import tailwindcss from "tailwindcss";
|
|||
|
||||
const SITE_ROOT = "./_site";
|
||||
const POST_BUILD_STYLESHEET = `${SITE_ROOT}/assets/css/`;
|
||||
const PRE_BUILD_STYLESHEET = "./src/style.css";
|
||||
const PRE_BUILD_STYLESHEET = "./assets/css/style.css";
|
||||
const TAILWIND_CONFIG = "./tailwind.config.js";
|
||||
|
||||
// Fix for Windows compatibility
|
||||
|
|
|
@ -1,61 +0,0 @@
|
|||
@tailwind base;
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
|
||||
html {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
.link--external,
|
||||
.link--back {
|
||||
@apply relative italic font-semibold text-xs pl-3 transition-all duration-300;
|
||||
}
|
||||
|
||||
.link--external::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
transform: translateY(-50%);
|
||||
width: 6px;
|
||||
height: 8px;
|
||||
background-image: url(/assets/img/arrow.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.link--back::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 0;
|
||||
transform: translateY(-50%) rotate(180deg);
|
||||
width: 6px;
|
||||
height: 8px;
|
||||
background-image: url(/assets/img/arrow.svg);
|
||||
background-repeat: no-repeat;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
.link--external::after,
|
||||
.link--back::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
height: 1px;
|
||||
}
|
||||
|
||||
.link--external:hover::after,
|
||||
.link--back:hover::after {
|
||||
background-color: #151512;
|
||||
}
|
||||
|
||||
.work__card:hover .link--external::before {
|
||||
background-image: url(/assets/img/arrow-white.svg);
|
||||
}
|
||||
|
||||
.work__card:hover .link--dapp::before {
|
||||
background-image: url(/assets/img/arrow-peach.svg);
|
||||
}
|
Loading…
Reference in New Issue