mirror of
https://github.com/acid-info/vac.dev.git
synced 2025-02-22 16:48:15 +00:00
* Add new design * Use yarn instead of npm * Add 404 page style * Update "See VAC Openings" CTA * Change VAC to Vac * Change specs link * Keep post categories * Change code formatting * Update images * Update media links * Add media image default * Update package.json * Add twitter cards meta data * Add media section back * Remove images * Comment script for form * Change media urls to https * Import font locally * Add Anonymous font * Change inner page layout * Change pre code style * Add font preloading * Change post content styles * Add alt attribute * Change footer research links * Update gitignore * Add Fathom analytics * Update links * Change gif to video * Add work cards links back * Change footer spacing * Change logo size * Fix header * Centered section join * Make cards clickable * Align left section join * Remove graphic & video section about * Return logo size * Add post for Waku v1 vs Waku v2 bandwidth comparison (#43) * Add post for Waku v1 vs Waku v2 bandwidth comparison * Addressing PR comments * Added future work. Minor changes to intro. (cherry picked from commit 007696cfc9898178a03a34123c59176913de3463) * Add <code> styles * Add Hanno page * Add opinion piece on ethics in surveillance tech (#44) * Add opinion piece on ethics in surveillance tech * Change published date. Added preface. * wrong date - today is 3rd (cherry picked from commit c64f5a889e48525a24313b17be808411620d1622) * Add circe page Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com> Co-authored-by: Hanno Cornelius <68783915+jm-clius@users.noreply.github.com> Co-authored-by: thecirce <95408261+thecirce@users.noreply.github.com>
69 lines
1.4 KiB
JavaScript
69 lines
1.4 KiB
JavaScript
module.exports = {
|
|
mode: "jit",
|
|
purge: [`_site/**/*.html`, `_site/**/*.css`],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: theme => ({
|
|
arrow: "url(/assets/img/arrow.svg)",
|
|
arrowWhite: "url(/assets/img/arrow-white.svg)",
|
|
arrowPeach: "url(/assets/img/arrow-peach.svg)",
|
|
}),
|
|
maxWidth: {
|
|
210: "210px",
|
|
280: "280px",
|
|
436: "436px",
|
|
680: "680px",
|
|
48: "48%",
|
|
80: "80%",
|
|
},
|
|
maxHeight: {
|
|
280: "280px",
|
|
436: "436px",
|
|
nav: "350px",
|
|
},
|
|
},
|
|
screens: {
|
|
xxs: "370px",
|
|
xscard: "436px",
|
|
xs: "450px",
|
|
xm: "480px",
|
|
sm: "570px",
|
|
sl: "680px",
|
|
md: "768px",
|
|
ml: "900px",
|
|
lg: "1024px",
|
|
l: "1199px",
|
|
lm: "1280px",
|
|
xl: "1440px",
|
|
},
|
|
fontFamily: {
|
|
body: ["Open Sans", "sans-serif"],
|
|
code: ["Anonymous Pro", "monospace"],
|
|
},
|
|
fontSize: {
|
|
xxs: ["10px", "22px"],
|
|
xs: ["12px", "16px"],
|
|
s: ["12px", "20px"],
|
|
sm: ["14px", "22px"],
|
|
base: ["16px", "29px"],
|
|
l: ["18px", "25px"],
|
|
lg: ["20px", "28px"],
|
|
h: ["22px", "22px"],
|
|
xl: ["24px", "32px"],
|
|
xxl: ["32px", "44px"],
|
|
},
|
|
textColor: {
|
|
white: "#fff",
|
|
black: "#151512",
|
|
peach: "#D1A69D",
|
|
},
|
|
colors: {
|
|
white: "#fff",
|
|
black: "#151512",
|
|
peach: "#D1A69D",
|
|
},
|
|
},
|
|
variants: {},
|
|
plugins: [],
|
|
};
|