Skip to content

Commit

Permalink
Upgraded from Bootstrap 3 to 4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
SpilledMilkCOM committed Mar 21, 2021
1 parent 9f98792 commit a2f82e6
Show file tree
Hide file tree
Showing 163 changed files with 59,522 additions and 14,802 deletions.
17 changes: 14 additions & 3 deletions SpilledMilkSiteNew/App_Start/BundleConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,21 @@ public static void RegisterBundles(BundleCollection bundles)
"~/Scripts/bootstrap.min.js",
"~/Scripts/respond.js"));

// cbpAnimatedHeader depends on classie to toggle/replace the class.

bundles.Add(new ScriptBundle("~/bundles/classie").Include("~/Scripts/classie.js"));

// Adding animated compaction of the navbar

bundles.Add(new ScriptBundle("~/bundles/cbpAnimatedHeader").Include("~/Scripts/cbpAnimatedHeader.min.js"));
bundles.Add(new ScriptBundle("~/bundles/utilities").Include("~/Scripts/utilities.js"));
bundles.Add(new ScriptBundle("~/bundles/easing").Include("~/Scripts/jquery.easing.1.3.js"));
bundles.Add(new ScriptBundle("~/bundles/stellar").Include("~/Scripts/jquery.stellar.js"));

//bundles.Add(new ScriptBundle("~/bundles/easing").Include("~/Scripts/jquery.easing.1.3.js"));
//bundles.Add(new ScriptBundle("~/bundles/stellar").Include("~/Scripts/jquery.stellar.js"));
bundles.Add(new ScriptBundle("~/bundles/wow").Include("~/Scripts/wow.min.js"));
bundles.Add(new ScriptBundle("~/bundles/nanoGallery").Include("~/Scripts/jquery.nanogallery.min.js"));

// All the STYLE includes

bundles.Add(new StyleBundle("~/Content/css").Include("~/Content/bootstrap.min.css", "~/Content/site.css"));
bundles.Add(new StyleBundle("~/Content/FontAwesome").Include("~/Content/font-awesome.min.css"));

Expand All @@ -35,6 +42,10 @@ public static void RegisterBundles(BundleCollection bundles)

// http://nanogallery.brisbois.fr
bundles.Add(new StyleBundle("~/Content/nanoGallery").Include("~/Content/nanogallery.min.css"));

// Adding the "custom" scripts to a bundle.

bundles.Add(new ScriptBundle("~/bundles/utilities").Include("~/Scripts/utilities.js"));
}
}
}
11 changes: 9 additions & 2 deletions SpilledMilkSiteNew/Content/Site.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,13 @@ textarea {
padding-right: 15px;
}

/* Changing the Bootstrap button style */
.btn-default {
border-color: lightgray;
border-width: 0.06em;
box-shadow: grey 0.07em 0.07em;
}

#carousel {
margin: 50px 5px;
}
Expand Down Expand Up @@ -83,9 +90,9 @@ textarea {
}
}

.img-responsive {
/*.img-responsive {
margin: 0px auto;
}
}*/

.navbar {
margin-bottom: 0px;
Expand Down
Loading

0 comments on commit a2f82e6

Please sign in to comment.