├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── angular.json ├── documentation ├── css │ ├── bootstrap.min.css │ ├── demo.css │ ├── nucleo-icons.css │ └── paper-kit.css ├── js │ ├── bootstrap.min.js │ ├── jquery-3.2.1.js │ ├── jquery-ui-1.12.1.custom.min.js │ ├── paper-kit.js │ └── tether.min.js └── tutorial-components.html ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── genezio.yaml ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── components │ │ ├── basicelements │ │ │ ├── basicelements.component.html │ │ │ ├── basicelements.component.scss │ │ │ ├── basicelements.component.spec.ts │ │ │ └── basicelements.component.ts │ │ ├── components.component.html │ │ ├── components.component.ts │ │ ├── components.module.ts │ │ ├── modal │ │ │ ├── modal.component.html │ │ │ ├── modal.component.scss │ │ │ ├── modal.component.spec.ts │ │ │ └── modal.component.ts │ │ ├── navigation │ │ │ ├── navigation.component.html │ │ │ ├── navigation.component.scss │ │ │ ├── navigation.component.spec.ts │ │ │ └── navigation.component.ts │ │ ├── notification │ │ │ ├── notification.component.html │ │ │ ├── notification.component.scss │ │ │ ├── notification.component.spec.ts │ │ │ └── notification.component.ts │ │ ├── nucleoicons │ │ │ ├── nucleoicons.component.html │ │ │ ├── nucleoicons.component.scss │ │ │ ├── nucleoicons.component.spec.ts │ │ │ └── nucleoicons.component.ts │ │ └── typography │ │ │ ├── typography.component.html │ │ │ ├── typography.component.scss │ │ │ ├── typography.component.spec.ts │ │ │ └── typography.component.ts │ ├── examples │ │ ├── examples.module.ts │ │ ├── landing │ │ │ ├── landing.component.html │ │ │ ├── landing.component.scss │ │ │ ├── landing.component.spec.ts │ │ │ └── landing.component.ts │ │ ├── profile │ │ │ ├── profile.component.html │ │ │ ├── profile.component.scss │ │ │ ├── profile.component.spec.ts │ │ │ └── profile.component.ts │ │ └── signup │ │ │ ├── signup.component.html │ │ │ ├── signup.component.scss │ │ │ ├── signup.component.spec.ts │ │ │ └── signup.component.ts │ └── shared │ │ ├── footer │ │ ├── footer.component.html │ │ ├── footer.component.scss │ │ ├── footer.component.spec.ts │ │ └── footer.component.ts │ │ └── navbar │ │ ├── navbar.component.html │ │ ├── navbar.component.scss │ │ ├── navbar.component.spec.ts │ │ └── navbar.component.ts ├── assets │ ├── css │ │ ├── demo.css │ │ └── nucleo-icons.css │ ├── fonts │ │ ├── nucleo-icons.eot │ │ ├── nucleo-icons.ttf │ │ ├── nucleo-icons.woff │ │ └── nucleo-icons.woff2 │ ├── img │ │ ├── angular2-logo-white.png │ │ ├── angular2-logo.png │ │ ├── antoine-barres.jpg │ │ ├── apple-icon.png │ │ ├── bruno-abatti.jpg │ │ ├── clouds.png │ │ ├── creative-tim-white-slim2.png │ │ ├── daniel-olahh.jpg │ │ ├── daniel-olahs.jpg │ │ ├── examples │ │ │ ├── landing-page.JPG │ │ │ └── profile-page.JPG │ │ ├── fabio-mangione.jpg │ │ ├── faces │ │ │ ├── ayo-ogunseinde-2.jpg │ │ │ ├── clem-onojeghuo-2.jpg │ │ │ ├── clem-onojeghuo-3.jpg │ │ │ ├── erik-lucatero-2.jpg │ │ │ ├── joe-gardner-2.jpg │ │ │ └── kaci-baum-2.jpg │ │ ├── favicon.ico │ │ ├── federico-beccari.jpg │ │ ├── fog-low.png │ │ ├── ilya-yakover.jpg │ │ ├── joshua-stannard.jpg │ │ ├── login-image.jpg │ │ ├── new_logo.png │ │ ├── placeholder.jpg │ │ ├── soroush-karimi.jpg │ │ └── uriel-soberanes.jpg │ └── sass │ │ ├── paper-kit.scss │ │ └── paper-kit │ │ ├── _alerts.scss │ │ ├── _bootstrap-switch.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _carousel.scss │ │ ├── _checkbox-radio.scss │ │ ├── _collapse.scss │ │ ├── _dropdown.scss │ │ ├── _examples.scss │ │ ├── _footers.scss │ │ ├── _icons.scss │ │ ├── _images.scss │ │ ├── _inputs.scss │ │ ├── _labels.scss │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _modal.scss │ │ ├── _navbars.scss │ │ ├── _progress-bars.scss │ │ ├── _responsive.scss │ │ ├── _sections.scss │ │ ├── _sliders.scss │ │ ├── _social-buttons.scss │ │ ├── _tabs-navs-pagination.scss │ │ ├── _tooltips-and-popovers.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ ├── mixins │ │ ├── _buttons.scss │ │ ├── _inputs.scss │ │ ├── _labels.scss │ │ ├── _navbars.scss │ │ ├── _popovers.scss │ │ ├── _tabs.scss │ │ ├── _transparency.scss │ │ └── _vendor-prefixes.scss │ │ └── plugins │ │ └── _datetimepicker.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json └── tslint.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/angular.json -------------------------------------------------------------------------------- /documentation/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/css/bootstrap.min.css -------------------------------------------------------------------------------- /documentation/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/css/demo.css -------------------------------------------------------------------------------- /documentation/css/nucleo-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/css/nucleo-icons.css -------------------------------------------------------------------------------- /documentation/css/paper-kit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/css/paper-kit.css -------------------------------------------------------------------------------- /documentation/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/js/bootstrap.min.js -------------------------------------------------------------------------------- /documentation/js/jquery-3.2.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/js/jquery-3.2.1.js -------------------------------------------------------------------------------- /documentation/js/jquery-ui-1.12.1.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/js/jquery-ui-1.12.1.custom.min.js -------------------------------------------------------------------------------- /documentation/js/paper-kit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/js/paper-kit.js -------------------------------------------------------------------------------- /documentation/js/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/js/tether.min.js -------------------------------------------------------------------------------- /documentation/tutorial-components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/documentation/tutorial-components.html -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /genezio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/genezio.yaml -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/app.routing.ts -------------------------------------------------------------------------------- /src/app/components/basicelements/basicelements.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/basicelements/basicelements.component.html -------------------------------------------------------------------------------- /src/app/components/basicelements/basicelements.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/basicelements/basicelements.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/basicelements/basicelements.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/basicelements/basicelements.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/basicelements/basicelements.component.ts -------------------------------------------------------------------------------- /src/app/components/components.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/components.component.html -------------------------------------------------------------------------------- /src/app/components/components.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/components.component.ts -------------------------------------------------------------------------------- /src/app/components/components.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/components.module.ts -------------------------------------------------------------------------------- /src/app/components/modal/modal.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/modal/modal.component.html -------------------------------------------------------------------------------- /src/app/components/modal/modal.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/modal/modal.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/modal/modal.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/modal/modal.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/modal/modal.component.ts -------------------------------------------------------------------------------- /src/app/components/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/app/components/navigation/navigation.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/navigation/navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/navigation/navigation.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/app/components/notification/notification.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/notification/notification.component.html -------------------------------------------------------------------------------- /src/app/components/notification/notification.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/notification/notification.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/notification/notification.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/notification/notification.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/notification/notification.component.ts -------------------------------------------------------------------------------- /src/app/components/nucleoicons/nucleoicons.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/nucleoicons/nucleoicons.component.html -------------------------------------------------------------------------------- /src/app/components/nucleoicons/nucleoicons.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/nucleoicons/nucleoicons.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/nucleoicons/nucleoicons.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/nucleoicons/nucleoicons.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/nucleoicons/nucleoicons.component.ts -------------------------------------------------------------------------------- /src/app/components/typography/typography.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/typography/typography.component.html -------------------------------------------------------------------------------- /src/app/components/typography/typography.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/components/typography/typography.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/typography/typography.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/typography/typography.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/components/typography/typography.component.ts -------------------------------------------------------------------------------- /src/app/examples/examples.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/examples.module.ts -------------------------------------------------------------------------------- /src/app/examples/landing/landing.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/landing/landing.component.html -------------------------------------------------------------------------------- /src/app/examples/landing/landing.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/examples/landing/landing.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/landing/landing.component.spec.ts -------------------------------------------------------------------------------- /src/app/examples/landing/landing.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/landing/landing.component.ts -------------------------------------------------------------------------------- /src/app/examples/profile/profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/profile/profile.component.html -------------------------------------------------------------------------------- /src/app/examples/profile/profile.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/examples/profile/profile.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/profile/profile.component.spec.ts -------------------------------------------------------------------------------- /src/app/examples/profile/profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/profile/profile.component.ts -------------------------------------------------------------------------------- /src/app/examples/signup/signup.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/signup/signup.component.html -------------------------------------------------------------------------------- /src/app/examples/signup/signup.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/examples/signup/signup.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/signup/signup.component.spec.ts -------------------------------------------------------------------------------- /src/app/examples/signup/signup.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/examples/signup/signup.component.ts -------------------------------------------------------------------------------- /src/app/shared/footer/footer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/footer/footer.component.html -------------------------------------------------------------------------------- /src/app/shared/footer/footer.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/footer/footer.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/footer/footer.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/footer/footer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/footer/footer.component.ts -------------------------------------------------------------------------------- /src/app/shared/navbar/navbar.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/navbar/navbar.component.html -------------------------------------------------------------------------------- /src/app/shared/navbar/navbar.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/shared/navbar/navbar.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/navbar/navbar.component.spec.ts -------------------------------------------------------------------------------- /src/app/shared/navbar/navbar.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/app/shared/navbar/navbar.component.ts -------------------------------------------------------------------------------- /src/assets/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/css/demo.css -------------------------------------------------------------------------------- /src/assets/css/nucleo-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/css/nucleo-icons.css -------------------------------------------------------------------------------- /src/assets/fonts/nucleo-icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/fonts/nucleo-icons.eot -------------------------------------------------------------------------------- /src/assets/fonts/nucleo-icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/fonts/nucleo-icons.ttf -------------------------------------------------------------------------------- /src/assets/fonts/nucleo-icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/fonts/nucleo-icons.woff -------------------------------------------------------------------------------- /src/assets/fonts/nucleo-icons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/fonts/nucleo-icons.woff2 -------------------------------------------------------------------------------- /src/assets/img/angular2-logo-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/angular2-logo-white.png -------------------------------------------------------------------------------- /src/assets/img/angular2-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/angular2-logo.png -------------------------------------------------------------------------------- /src/assets/img/antoine-barres.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/antoine-barres.jpg -------------------------------------------------------------------------------- /src/assets/img/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/apple-icon.png -------------------------------------------------------------------------------- /src/assets/img/bruno-abatti.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/bruno-abatti.jpg -------------------------------------------------------------------------------- /src/assets/img/clouds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/clouds.png -------------------------------------------------------------------------------- /src/assets/img/creative-tim-white-slim2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/creative-tim-white-slim2.png -------------------------------------------------------------------------------- /src/assets/img/daniel-olahh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/daniel-olahh.jpg -------------------------------------------------------------------------------- /src/assets/img/daniel-olahs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/daniel-olahs.jpg -------------------------------------------------------------------------------- /src/assets/img/examples/landing-page.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/examples/landing-page.JPG -------------------------------------------------------------------------------- /src/assets/img/examples/profile-page.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/examples/profile-page.JPG -------------------------------------------------------------------------------- /src/assets/img/fabio-mangione.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/fabio-mangione.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/ayo-ogunseinde-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/ayo-ogunseinde-2.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/clem-onojeghuo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/clem-onojeghuo-2.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/clem-onojeghuo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/clem-onojeghuo-3.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/erik-lucatero-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/erik-lucatero-2.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/joe-gardner-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/joe-gardner-2.jpg -------------------------------------------------------------------------------- /src/assets/img/faces/kaci-baum-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/faces/kaci-baum-2.jpg -------------------------------------------------------------------------------- /src/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/federico-beccari.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/federico-beccari.jpg -------------------------------------------------------------------------------- /src/assets/img/fog-low.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/fog-low.png -------------------------------------------------------------------------------- /src/assets/img/ilya-yakover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/ilya-yakover.jpg -------------------------------------------------------------------------------- /src/assets/img/joshua-stannard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/joshua-stannard.jpg -------------------------------------------------------------------------------- /src/assets/img/login-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/login-image.jpg -------------------------------------------------------------------------------- /src/assets/img/new_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/new_logo.png -------------------------------------------------------------------------------- /src/assets/img/placeholder.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/placeholder.jpg -------------------------------------------------------------------------------- /src/assets/img/soroush-karimi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/soroush-karimi.jpg -------------------------------------------------------------------------------- /src/assets/img/uriel-soberanes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/img/uriel-soberanes.jpg -------------------------------------------------------------------------------- /src/assets/sass/paper-kit.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_alerts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_alerts.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_bootstrap-switch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_bootstrap-switch.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_buttons.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_cards.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_cards.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_carousel.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_checkbox-radio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_checkbox-radio.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_collapse.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_collapse.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_dropdown.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_examples.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_examples.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_footers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_footers.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_icons.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_images.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_inputs.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_labels.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_misc.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_misc.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_mixins.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_modal.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_navbars.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_progress-bars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_progress-bars.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_responsive.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_responsive.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_sections.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_sections.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_sliders.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_sliders.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_social-buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_social-buttons.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_tabs-navs-pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_tabs-navs-pagination.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_tooltips-and-popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_tooltips-and-popovers.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_typography.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/_variables.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_buttons.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_inputs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_inputs.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_labels.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_navbars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_navbars.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_popovers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_popovers.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_tabs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_tabs.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_transparency.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_transparency.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/mixins/_vendor-prefixes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/mixins/_vendor-prefixes.scss -------------------------------------------------------------------------------- /src/assets/sass/paper-kit/plugins/_datetimepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/assets/sass/paper-kit/plugins/_datetimepicker.scss -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creativetimofficial/paper-kit-2-angular/HEAD/tslint.json --------------------------------------------------------------------------------