gitextract_3r9xlmr5/ ├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .github/ │ └── workflows/ │ ├── cd.yml │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── i18n/ │ ├── _af.yml │ ├── _az.yml │ ├── _ca.yml │ ├── _cs.yml │ ├── _cy.yml │ ├── _da.yml │ ├── _es.yml │ ├── _nb.yml │ ├── _pt.yml │ ├── _sk.yml │ ├── _sr-latn.yml │ ├── am.yml │ ├── ar.yml │ ├── bn.yml │ ├── de.yml │ ├── el-gr.yml │ ├── en.yml │ ├── es-mx.yml │ ├── fa-ir.yml │ ├── fr.yml │ ├── he.yml │ ├── hi.yml │ ├── hu.yml │ ├── id.yml │ ├── it.yml │ ├── ja.yml │ ├── ko.yml │ ├── lb.yml │ ├── ml.yml │ ├── nl.yml │ ├── no-bok.yml │ ├── pl.yml │ ├── pt-br.yml │ ├── ro.yml │ ├── ru.yml │ ├── si.yml │ ├── sq.yml │ ├── sv-se.yml │ ├── tr.yml │ ├── uk.yml │ ├── vi.yml │ ├── yue.yml │ ├── zh-cn.yml │ └── zh-tw.yml ├── package.json ├── scripts/ │ ├── build.js │ ├── helpers/ │ │ └── format.js │ └── start.js ├── src/ │ ├── 404.css │ ├── 404.pug │ ├── animation/ │ │ ├── easeInBounce.css │ │ ├── easeInElastic.css │ │ ├── easeInOutBounce.css │ │ ├── easeInOutElastic.css │ │ ├── easeOutBounce.css │ │ ├── easeOutElastic.css │ │ └── index.css │ ├── button/ │ │ └── button.css │ ├── card/ │ │ ├── card.css │ │ ├── card.pug │ │ └── card.ts │ ├── case/ │ │ ├── case.css │ │ └── case.pug │ ├── cases/ │ │ └── cases.css │ ├── chart/ │ │ └── chart.css │ ├── code/ │ │ ├── code.css │ │ ├── codeCss.pug │ │ ├── codeGradient.pug │ │ ├── codeMaths.pug │ │ └── codePostCss.pug │ ├── columns/ │ │ ├── columns.css │ │ └── columns.pug │ ├── core/ │ │ └── core.css │ ├── details/ │ │ ├── details.css │ │ └── details.pug │ ├── easings/ │ │ ├── easings.ts │ │ ├── easingsFunctions.ts │ │ └── keyframes.ts │ ├── easings.yml │ ├── error/ │ │ ├── error.css │ │ └── error.pug │ ├── example/ │ │ └── example.css │ ├── example-copy/ │ │ ├── example-copy.css │ │ ├── example-copy.pug │ │ └── example-copy.ts │ ├── external-link/ │ │ └── external-link.pug │ ├── footer/ │ │ ├── footer.css │ │ ├── footer.pug │ │ └── footer.ts │ ├── function/ │ │ ├── function.css │ │ ├── function.pug │ │ └── function.ts │ ├── gradient/ │ │ └── gradient.ts │ ├── header/ │ │ ├── header.css │ │ └── header.pug │ ├── helpers/ │ │ ├── constants.ts │ │ ├── copyText.ts │ │ ├── forNodeList.ts │ │ ├── getElement.ts │ │ ├── getElementPosition.ts │ │ ├── getTransitionTime.ts │ │ ├── linearInterpolation.ts │ │ ├── mixColors.ts │ │ ├── parseStringOfFourNumbers.ts │ │ └── roundTo2DecimalPlaces.ts │ ├── icon/ │ │ └── icon.css │ ├── index.css │ ├── index.pug │ ├── index.ts │ ├── info/ │ │ ├── info.css │ │ ├── info.pug │ │ └── info.ts │ ├── info-chart/ │ │ ├── info-chart.css │ │ └── info-chart.ts │ ├── keyframes.css │ ├── layout/ │ │ └── layout.css │ ├── manifest.webmanifest │ ├── math/ │ │ └── math.pug │ ├── navigation/ │ │ └── navigation.ts │ ├── overlay/ │ │ ├── overlay.css │ │ ├── overlay.pug │ │ └── overlay.ts │ ├── pug.config.js │ ├── sw.js │ ├── theme/ │ │ └── theme.ts │ ├── translate/ │ │ └── translate.css │ ├── utils/ │ │ └── utils.css │ └── variables/ │ └── variables.css └── tsconfig.json