├── LICENSE ├── README.md ├── about.html ├── contact.html ├── css ├── bootstrap.min.css └── style.css ├── feature.html ├── img ├── about-1.jpg ├── about-2.jpg ├── hero-bg.jpg ├── hero-slider-1.jpg ├── hero-slider-2.jpg ├── hero-slider-3.jpg ├── newsletter.jpg ├── project-1.jpg ├── project-2.jpg ├── project-3.jpg ├── project-4.jpg ├── project-5.jpg ├── project-6.jpg ├── service-1.jpg ├── service-2.jpg ├── service-3.jpg ├── service-4.jpg ├── team-1.jpg ├── team-2.jpg ├── team-3.jpg ├── team-4.jpg ├── testimonial-1.jpg ├── testimonial-2.jpg └── testimonial-3.jpg ├── index.html ├── interior-design-website-template-free.jpg ├── js └── main.js ├── lib ├── animate │ ├── animate.css │ └── animate.min.css ├── counterup │ └── counterup.min.js ├── easing │ ├── easing.js │ └── easing.min.js ├── owlcarousel │ ├── LICENSE │ ├── assets │ │ ├── ajax-loader.gif │ │ ├── owl.carousel.css │ │ ├── owl.carousel.min.css │ │ ├── owl.theme.default.css │ │ ├── owl.theme.default.min.css │ │ ├── owl.theme.green.css │ │ ├── owl.theme.green.min.css │ │ └── owl.video.play.png │ ├── owl.carousel.js │ └── owl.carousel.min.js ├── waypoints │ ├── links.php │ └── waypoints.min.js └── wow │ ├── wow.js │ └── wow.min.js ├── project.html ├── scss ├── bootstrap.scss └── bootstrap │ └── scss │ ├── _accordion.scss │ ├── _alert.scss │ ├── _badge.scss │ ├── _breadcrumb.scss │ ├── _button-group.scss │ ├── _buttons.scss │ ├── _card.scss │ ├── _carousel.scss │ ├── _close.scss │ ├── _containers.scss │ ├── _dropdown.scss │ ├── _forms.scss │ ├── _functions.scss │ ├── _grid.scss │ ├── _helpers.scss │ ├── _images.scss │ ├── _list-group.scss │ ├── _mixins.scss │ ├── _modal.scss │ ├── _nav.scss │ ├── _navbar.scss │ ├── _offcanvas.scss │ ├── _pagination.scss │ ├── _popover.scss │ ├── _progress.scss │ ├── _reboot.scss │ ├── _root.scss │ ├── _spinners.scss │ ├── _tables.scss │ ├── _toasts.scss │ ├── _tooltip.scss │ ├── _transitions.scss │ ├── _type.scss │ ├── _utilities.scss │ ├── _variables.scss │ ├── bootstrap-grid.scss │ ├── bootstrap-reboot.scss │ ├── bootstrap-utilities.scss │ ├── bootstrap.scss │ ├── forms │ ├── _floating-labels.scss │ ├── _form-check.scss │ ├── _form-control.scss │ ├── _form-range.scss │ ├── _form-select.scss │ ├── _form-text.scss │ ├── _input-group.scss │ ├── _labels.scss │ └── _validation.scss │ ├── helpers │ ├── _clearfix.scss │ ├── _colored-links.scss │ ├── _position.scss │ ├── _ratio.scss │ ├── _stretched-link.scss │ ├── _text-truncation.scss │ └── _visually-hidden.scss │ ├── mixins │ ├── _alert.scss │ ├── _border-radius.scss │ ├── _box-shadow.scss │ ├── _breakpoints.scss │ ├── _buttons.scss │ ├── _caret.scss │ ├── _clearfix.scss │ ├── _color-scheme.scss │ ├── _container.scss │ ├── _deprecate.scss │ ├── _forms.scss │ ├── _gradients.scss │ ├── _grid.scss │ ├── _image.scss │ ├── _list-group.scss │ ├── _lists.scss │ ├── _pagination.scss │ ├── _reset-text.scss │ ├── _resize.scss │ ├── _table-variants.scss │ ├── _text-truncate.scss │ ├── _transition.scss │ ├── _utilities.scss │ └── _visually-hidden.scss │ ├── utilities │ └── _api.scss │ └── vendor │ └── _rfs.scss ├── service.html ├── team.html └── testimonial.html /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MALAVA_INTERIOR-DESIGNER 2 | interior-design-website 3 | -------------------------------------------------------------------------------- /about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/about.html -------------------------------------------------------------------------------- /contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/contact.html -------------------------------------------------------------------------------- /css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/css/bootstrap.min.css -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/css/style.css -------------------------------------------------------------------------------- /feature.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/feature.html -------------------------------------------------------------------------------- /img/about-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/about-1.jpg -------------------------------------------------------------------------------- /img/about-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/about-2.jpg -------------------------------------------------------------------------------- /img/hero-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/hero-bg.jpg -------------------------------------------------------------------------------- /img/hero-slider-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/hero-slider-1.jpg -------------------------------------------------------------------------------- /img/hero-slider-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/hero-slider-2.jpg -------------------------------------------------------------------------------- /img/hero-slider-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/hero-slider-3.jpg -------------------------------------------------------------------------------- /img/newsletter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/newsletter.jpg -------------------------------------------------------------------------------- /img/project-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-1.jpg -------------------------------------------------------------------------------- /img/project-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-2.jpg -------------------------------------------------------------------------------- /img/project-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-3.jpg -------------------------------------------------------------------------------- /img/project-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-4.jpg -------------------------------------------------------------------------------- /img/project-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-5.jpg -------------------------------------------------------------------------------- /img/project-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/project-6.jpg -------------------------------------------------------------------------------- /img/service-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/service-1.jpg -------------------------------------------------------------------------------- /img/service-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/service-2.jpg -------------------------------------------------------------------------------- /img/service-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/service-3.jpg -------------------------------------------------------------------------------- /img/service-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/service-4.jpg -------------------------------------------------------------------------------- /img/team-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/team-1.jpg -------------------------------------------------------------------------------- /img/team-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/team-2.jpg -------------------------------------------------------------------------------- /img/team-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/team-3.jpg -------------------------------------------------------------------------------- /img/team-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/team-4.jpg -------------------------------------------------------------------------------- /img/testimonial-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/testimonial-1.jpg -------------------------------------------------------------------------------- /img/testimonial-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/testimonial-2.jpg -------------------------------------------------------------------------------- /img/testimonial-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/img/testimonial-3.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/index.html -------------------------------------------------------------------------------- /interior-design-website-template-free.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/interior-design-website-template-free.jpg -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/js/main.js -------------------------------------------------------------------------------- /lib/animate/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/animate/animate.css -------------------------------------------------------------------------------- /lib/animate/animate.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/animate/animate.min.css -------------------------------------------------------------------------------- /lib/counterup/counterup.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/counterup/counterup.min.js -------------------------------------------------------------------------------- /lib/easing/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/easing/easing.js -------------------------------------------------------------------------------- /lib/easing/easing.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/easing/easing.min.js -------------------------------------------------------------------------------- /lib/owlcarousel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/LICENSE -------------------------------------------------------------------------------- /lib/owlcarousel/assets/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/ajax-loader.gif -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.carousel.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.carousel.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.carousel.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.carousel.min.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.theme.default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.theme.default.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.theme.default.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.theme.default.min.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.theme.green.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.theme.green.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.theme.green.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.theme.green.min.css -------------------------------------------------------------------------------- /lib/owlcarousel/assets/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/assets/owl.video.play.png -------------------------------------------------------------------------------- /lib/owlcarousel/owl.carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/owl.carousel.js -------------------------------------------------------------------------------- /lib/owlcarousel/owl.carousel.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/owlcarousel/owl.carousel.min.js -------------------------------------------------------------------------------- /lib/waypoints/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/waypoints/links.php -------------------------------------------------------------------------------- /lib/waypoints/waypoints.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/waypoints/waypoints.min.js -------------------------------------------------------------------------------- /lib/wow/wow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/wow/wow.js -------------------------------------------------------------------------------- /lib/wow/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/lib/wow/wow.min.js -------------------------------------------------------------------------------- /project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/project.html -------------------------------------------------------------------------------- /scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_accordion.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_alert.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_badge.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_badge.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_breadcrumb.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_breadcrumb.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_button-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_button-group.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_buttons.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_card.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_carousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_carousel.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_close.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_close.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_containers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_containers.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_dropdown.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_dropdown.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_forms.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_functions.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_grid.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_helpers.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_helpers.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_images.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_images.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_list-group.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_mixins.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_modal.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_nav.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_navbar.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_offcanvas.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_offcanvas.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_pagination.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_popover.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_progress.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_progress.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_reboot.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_root.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_root.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_spinners.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_spinners.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_tables.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_toasts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_toasts.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_tooltip.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_tooltip.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_transitions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_transitions.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_type.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_type.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_utilities.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/_variables.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/bootstrap-grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/bootstrap-grid.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/bootstrap-reboot.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/bootstrap-reboot.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/bootstrap-utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/bootstrap-utilities.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/bootstrap.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/bootstrap.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_floating-labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_floating-labels.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_form-check.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_form-check.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_form-control.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_form-control.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_form-range.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_form-range.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_form-select.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_form-select.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_form-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_form-text.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_input-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_input-group.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_labels.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_labels.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/forms/_validation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/forms/_validation.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_clearfix.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_colored-links.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_colored-links.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_position.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_position.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_ratio.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_ratio.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_stretched-link.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_stretched-link.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_text-truncation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_text-truncation.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/helpers/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/helpers/_visually-hidden.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_alert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_alert.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_border-radius.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_border-radius.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_box-shadow.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_box-shadow.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_breakpoints.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_breakpoints.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_buttons.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_caret.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_caret.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_clearfix.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_clearfix.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_color-scheme.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_color-scheme.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_container.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_container.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_deprecate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_deprecate.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_forms.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_forms.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_gradients.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_gradients.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_grid.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_image.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_image.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_list-group.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_list-group.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_lists.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_pagination.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_pagination.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_reset-text.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_reset-text.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_resize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_resize.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_table-variants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_table-variants.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_text-truncate.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_text-truncate.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_transition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_transition.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_utilities.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/mixins/_visually-hidden.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/mixins/_visually-hidden.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/utilities/_api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/utilities/_api.scss -------------------------------------------------------------------------------- /scss/bootstrap/scss/vendor/_rfs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/scss/bootstrap/scss/vendor/_rfs.scss -------------------------------------------------------------------------------- /service.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/service.html -------------------------------------------------------------------------------- /team.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/team.html -------------------------------------------------------------------------------- /testimonial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanonshati/MALAVA_INTERIOR-DESIGNER/HEAD/testimonial.html --------------------------------------------------------------------------------