diff --git a/gulpfile.babel.js b/gulpfile.babel.js index 8072d98..c438c81 100644 --- a/gulpfile.babel.js +++ b/gulpfile.babel.js @@ -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 diff --git a/src/style.css b/src/style.css deleted file mode 100644 index dcb95b4..0000000 --- a/src/style.css +++ /dev/null @@ -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); -}