Compare commits

..

No commits in common. "50e664f70b9584b9de98b270b2dc74d4ab6f2a4f" and "a92831002b5aa0c341329717cdeeaa06534b5e5a" have entirely different histories.

4 changed files with 168 additions and 45 deletions

3
.gitignore vendored
View File

@ -3,6 +3,3 @@ _cache/
dist/ dist/
dist-newstyle/ dist-newstyle/
result* result*
.direnv
.envrc
node_modules

View File

@ -13,7 +13,6 @@
flake-utils.lib.eachDefaultSystem (system: flake-utils.lib.eachDefaultSystem (system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
tailwindcss-cli = pkgs.callPackage ./tailwind {};
hp = pkgs.haskellPackages.override ( old: { hp = pkgs.haskellPackages.override ( old: {
overrides = pkgs.lib.composeExtensions ( old.overrides or (_: _: {})) (f: p: { overrides = pkgs.lib.composeExtensions ( old.overrides or (_: _: {})) (f: p: {
build-rauhala-info = f.callPackage ./site {}; build-rauhala-info = f.callPackage ./site {};
@ -32,8 +31,8 @@
entr entr
haskell-language-server haskell-language-server
ipfs ipfs
nodePackages.npm
tailwindcss-cli node2nix
]; ];
}; };
}); });

View File

@ -1,5 +1,5 @@
/* /*
! tailwindcss v3.3.1 | MIT License | https://tailwindcss.com ! tailwindcss v3.3.0 | MIT License | https://tailwindcss.com
*/ */
/* /*
@ -562,11 +562,35 @@ video {
inset: 0px; inset: 0px;
} }
.z-10 {
z-index: 10;
}
.mx-auto { .mx-auto {
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
} }
.mt-10 {
margin-top: 2.5rem;
}
.mt-2 {
margin-top: 0.5rem;
}
.mt-3 {
margin-top: 0.75rem;
}
.mt-5 {
margin-top: 1.25rem;
}
.mt-8 {
margin-top: 2rem;
}
.mb-10 { .mb-10 {
margin-bottom: 2.5rem; margin-bottom: 2.5rem;
} }
@ -575,12 +599,15 @@ video {
margin-right: 2.5rem; margin-right: 2.5rem;
} }
.mt-10 { .ml-10 {
margin-top: 2.5rem; margin-left: 2.5rem;
} }
.mt-3 { .line-clamp-3 {
margin-top: 0.75rem; overflow: hidden;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
} }
.flex { .flex {
@ -591,6 +618,14 @@ video {
display: grid; display: grid;
} }
.h-10 {
height: 2.5rem;
}
.w-10 {
width: 2.5rem;
}
.max-w-2xl { .max-w-2xl {
max-width: 42rem; max-width: 42rem;
} }
@ -611,6 +646,10 @@ video {
flex-shrink: 1; flex-shrink: 1;
} }
.grow {
flex-grow: 1;
}
.grid-cols-1 { .grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr)); grid-template-columns: repeat(1, minmax(0, 1fr));
} }
@ -649,16 +688,32 @@ video {
row-gap: 4rem; row-gap: 4rem;
} }
.justify-self-center {
justify-self: center;
}
.rounded-full {
border-radius: 9999px;
}
.rounded { .rounded {
border-radius: 0.25rem; border-radius: 0.25rem;
} }
.border {
border-width: 1px;
}
.border-t {
border-top-width: 1px;
}
.border-b { .border-b {
border-bottom-width: 1px; border-bottom-width: 1px;
} }
.border-t { .border-r {
border-top-width: 1px; border-right-width: 1px;
} }
.border-gray-200 { .border-gray-200 {
@ -666,14 +721,28 @@ video {
border-color: rgb(229 231 235 / var(--tw-border-opacity)); border-color: rgb(229 231 235 / var(--tw-border-opacity));
} }
.bg-white {
--tw-bg-opacity: 1;
background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-gray-50 {
--tw-bg-opacity: 1;
background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-gray-800 { .bg-gray-800 {
--tw-bg-opacity: 1; --tw-bg-opacity: 1;
background-color: rgb(31 41 55 / var(--tw-bg-opacity)); background-color: rgb(31 41 55 / var(--tw-bg-opacity));
} }
.bg-white { .p-4 {
--tw-bg-opacity: 1; padding: 1rem;
background-color: rgb(255 255 255 / var(--tw-bg-opacity)); }
.py-24 {
padding-top: 6rem;
padding-bottom: 6rem;
} }
.px-3 { .px-3 {
@ -686,18 +755,32 @@ video {
padding-right: 1.5rem; padding-right: 1.5rem;
} }
.py-24 { .py-1 {
padding-top: 6rem; padding-top: 0.25rem;
padding-bottom: 6rem; padding-bottom: 0.25rem;
}
.py-1\.5 {
padding-top: 0.375rem;
padding-bottom: 0.375rem;
}
.px-4 {
padding-left: 1rem;
padding-right: 1rem;
} }
.pt-10 { .pt-10 {
padding-top: 2.5rem; padding-top: 2.5rem;
} }
.text-2xl { .font-sans {
font-size: 1.5rem; font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
line-height: 2rem; }
.text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
} }
.text-lg { .text-lg {
@ -705,11 +788,34 @@ video {
line-height: 1.75rem; line-height: 1.75rem;
} }
.text-sm {
font-size: 0.875rem;
line-height: 1.25rem;
}
.text-xs { .text-xs {
font-size: 0.75rem; font-size: 0.75rem;
line-height: 1rem; line-height: 1rem;
} }
.text-5xl {
font-size: 3rem;
line-height: 1;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.font-bold {
font-weight: 700;
}
.font-medium {
font-weight: 500;
}
.font-semibold { .font-semibold {
font-weight: 600; font-weight: 600;
} }
@ -718,9 +824,16 @@ video {
line-height: 1.5rem; line-height: 1.5rem;
} }
.text-gray-300 { .leading-8 {
--tw-text-opacity: 1; line-height: 2rem;
color: rgb(209 213 219 / var(--tw-text-opacity)); }
.leading-tight {
line-height: 1.25;
}
.tracking-tight {
letter-spacing: -0.025em;
} }
.text-gray-500 { .text-gray-500 {
@ -728,15 +841,44 @@ video {
color: rgb(107 114 128 / var(--tw-text-opacity)); color: rgb(107 114 128 / var(--tw-text-opacity));
} }
.text-gray-600 {
--tw-text-opacity: 1;
color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-900 { .text-gray-900 {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(17 24 39 / var(--tw-text-opacity)); color: rgb(17 24 39 / var(--tw-text-opacity));
} }
.text-gray-400 {
--tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-white {
--tw-text-opacity: 1;
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-gray-300 {
--tw-text-opacity: 1;
color: rgb(209 213 219 / var(--tw-text-opacity));
}
.first\:border-0:first-child {
border-width: 0px;
}
.first\:border-none:first-child { .first\:border-none:first-child {
border-style: none; border-style: none;
} }
.hover\:bg-gray-100:hover {
--tw-bg-opacity: 1;
background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.hover\:text-gray-400:hover { .hover\:text-gray-400:hover {
--tw-text-opacity: 1; --tw-text-opacity: 1;
color: rgb(156 163 175 / var(--tw-text-opacity)); color: rgb(156 163 175 / var(--tw-text-opacity));
@ -760,6 +902,11 @@ video {
.sm\:pt-16 { .sm\:pt-16 {
padding-top: 4rem; padding-top: 4rem;
} }
.sm\:text-4xl {
font-size: 2.25rem;
line-height: 2.5rem;
}
} }
@media (min-width: 1024px) { @media (min-width: 1024px) {

View File

@ -1,20 +0,0 @@
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "tailwindcss-cli";
version = "3.3.1";
src = fetchurl {
url = "https://github.com/tailwindlabs/tailwindcss/releases/download/v${version}/tailwindcss-linux-x64";
sha256 = "sha256-i1ekM61t0SXR+iw9K9Z0y7cm3W4uQ4Kxodt/NK9fywg=";
};
dontUnpack = true;
dontStrip = true;
buildPhase = ''
cp $src tailwindcss
chmod u+x tailwindcss
'';
installPhase = ''
mkdir -p $out/bin
cp tailwindcss $out/bin/tailwindcss
'';
}