├── LICENSE ├── README.md ├── assets ├── css │ └── styles.css ├── img │ └── profile-img.png ├── js │ └── main.js └── scss │ ├── base │ └── _base.scss │ ├── components │ └── _card.scss │ ├── config │ └── _variables.scss │ └── styles.scss ├── index.html └── preview.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/img/profile-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/img/profile-img.png -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/scss/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/scss/base/_base.scss -------------------------------------------------------------------------------- /assets/scss/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/scss/components/_card.scss -------------------------------------------------------------------------------- /assets/scss/config/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/scss/config/_variables.scss -------------------------------------------------------------------------------- /assets/scss/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/assets/scss/styles.scss -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/index.html -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bedimcode/profile-card-ui-design/HEAD/preview.png --------------------------------------------------------------------------------