├── .gitignore ├── README-template.md ├── README.md ├── design ├── desktop-design.jpg ├── desktop-preview.jpg └── mobile-design.jpg ├── images ├── favicon-32x32.png ├── icon-calculator.svg ├── icon-karma.svg ├── icon-supervisor.svg └── icon-team-builder.svg ├── index.html └── style-guide.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/.gitignore -------------------------------------------------------------------------------- /README-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/README-template.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/README.md -------------------------------------------------------------------------------- /design/desktop-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/design/desktop-design.jpg -------------------------------------------------------------------------------- /design/desktop-preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/design/desktop-preview.jpg -------------------------------------------------------------------------------- /design/mobile-design.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/design/mobile-design.jpg -------------------------------------------------------------------------------- /images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/images/favicon-32x32.png -------------------------------------------------------------------------------- /images/icon-calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/images/icon-calculator.svg -------------------------------------------------------------------------------- /images/icon-karma.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/images/icon-karma.svg -------------------------------------------------------------------------------- /images/icon-supervisor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/images/icon-supervisor.svg -------------------------------------------------------------------------------- /images/icon-team-builder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/images/icon-team-builder.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/index.html -------------------------------------------------------------------------------- /style-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frontendmentorio/four-card-feature-section/HEAD/style-guide.md --------------------------------------------------------------------------------