EMAIL US
info@website.com
FIND US
12345 Fake ST NoWhere AB Country
© Copyright Made with By DevCRUD
` element.
$body-bg: $dark;
$body-color: $light;
// Fonts
//
// Font, line-height, and color for body text, headings, and more.
$font-size-base: 1rem; // Assumes the browser default, typically `16px`
$h1-font-size: $font-size-base * 3;
$h2-font-size: $font-size-base * 2.5;
$h3-font-size: $font-size-base * 1.85;
$h4-font-size: $font-size-base * 1.6;
$h5-font-size: $font-size-base * 1.3;
$h6-font-size: $font-size-base;
$text-muted: $gray-500;
$headings-font-family: 'Oswald', sans-serif;;
$section-title-font-size: 4rem;
// components
//
$component-active-color: $white ;
$component-active-bg: theme-color("primary");
// border
$border-color: $gray-700;
// navbar
$navbar-padding-y: 1rem;
$navbar-nav-link-padding-x: .7rem;
$navbar-nav-link-font-weight: 700;
$navbar-dark-color: $white;
$navbar-light-color: $gray-800;
$navbar-dark-active-color: $primary;
$navbar-light-active-color: $primary;
// Links
//
// Style anchor elements.
$link-hover-decoration: none;
// buttons and inputs
$input-btn-padding-y: .4rem;
$input-btn-padding-x: .78rem;
$input-btn-padding-y-sm: .25rem;
$input-btn-padding-x-sm: .5rem;
$input-btn-padding-y-lg: .8rem;
$input-btn-padding-x-lg: 1.6rem;
//forms
//
$input-bg: $gray-700;
$input-disabled-bg: $gray-600;
$input-border-color: $gray-800;
$input-focus-border-color: $primary;
$input-color: $gray-300;
$input-placeholder-color: $gray-400;
// custom forms
$custom-form-control-bg: transparent;
$custom-form-control-color: $white;
$custom-form-control-border-width: 2px;
$custom-form-control-active-border-color: $primary;
$custom-form-control-active-bg: rgba($gray-800, .2);
// Cards
$card-border-color: $border-color;
// testmonial-card
$testmonial-border-width: 2px;
$testmonial-border-radius: $border-radius;
$testmonial-subtitle-font-size: .8rem;
$testmonial-subtitle-opacity: .8;
$testmonial-subtitle-spacing: 1px;
$testmonial-title-font-size: $h3-font-size;
$testmonial-body-padding: 1rem;
$testmonial-top-spacer: 30px;
// code
$pre-bg: $gray-700;
$pre-color: lighten($primary, 10%);
$pre-border-radius: $border-radius;
$pre-padding: 1rem;
$pre-scrollable-max-height: 300px;
// hr
$hr-border-color: rgba($white, .1);
$hr-border-width: $border-width;
// Tables
$table-border-color: $gray-700;
// breadcrumb
$breadcrumb-bg: transparent;
// Paginations
$pagination-color: $white;
$pagination-bg: $gray-800;
$pagination-border-color: $gray-700;
$pagination-active-color: $component-active-color;
$pagination-active-bg: $component-active-bg;
Js codi
*!
=========================================================
* FoodHut Landing page
=========================================================
* Copyright: 2019 DevCRUD (https://devcrud.com)
* Licensed: (https://devcrud.com/licenses)
* Coded by www.devcrud.com
=========================================================
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
*/
// smooth scroll
$(document).ready(function(){
$(".navbar .nav-link").on('click', function(event) {
if (this.hash !== "") {
event.preventDefault();
var hash = this.hash;
$('html, body').animate({
scrollTop: $(hash).offset().top
}, 700, function(){
window.location.hash = hash;
});
}
});
});
new WOW().init();
function initMap() {
var uluru = {lat: 37.227837, lng: -95.700513};
var map = new google.maps.Map(document.getElementById('map'), {
zoom: 8,
center: uluru
});
var marker = new google.maps.Marker({
position: uluru,
map: map
});
}
Xulosa
|