Material Design for Bootstrap 3 by fezvrasta

Material Design for Bootstrap is a theme for Bootstrap 3 which lets you use the new Google Material Design in your favorite front-end framework. If you like this project you can support me by donating something on Gratipay, starring this repository, or reporting bugs and ideas. Read...

Material design for Bootstrap 3 by stas-melnikov

Material design for Bootstrap 3 This theme is a skin for Bootstrap, which means that can be used with any site built with the Bootstrap framework 3. With easy installation and customization thanks to the LESS/SASS files included and the custom themes colors ready to use. This skin is...

Set height for iFrame using jquery

$(document).ready(function () { var height = $(window.frameElement).height(); // Calculate the window height var minheight = $(window.frameElement).height(); // Calculate the window min-height $(window.top.document).find('iframe').css("height", (height - 20) + "px"); // Calculated window height - header height + footer height + padding + margin , then you will get the remaining height...

How to Detect Mobile Devices using jQuery

you can use this minified jQuery snippet to detect if your user is viewing using a mobile device. If you need to test for a specific device I’ve included a collection of JavaScript snippets below which can be used to detect various mobile handheld devices such as iPad, iPhone, iPod, iDevice, Andriod, Blackberry, WebOs and Windows Phone. /**  * jQuery.browser.mobile (http://detectmobilebrowser.com/)  *...

Setting view port for responsive site

Place the following meta tag into the tag. Viewport for mobile devices like iPhone and iPad.<!-- view port --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" /> <!-- -->...

CSS Media Queries For Common Devices

/* All Smartphones in portrait and landscape ----------- */ @media only screen and (min-device-width : 320px) and (max-device-width : 480px) { /* YOUR STYLE GOES HERE */ } /* All Smartphones in landscape ----------- */ @media only screen and (min-width : 321px) { /* YOUR STYLE GOES HERE */ } /* All Smartphones in portrait ----------- */ @media only screen and (max-width : 479px)...

Essential css hacks for IE/Win - Quirks

Default paragraphs in this page have yellow background. In any of the following test cases a blue background is set with a special (hack) rule. When the background is blue, the hack is applied. Note: "All" == IE5+/Win, Op6+, Moz, Saf IE7 only * + html .element {  margin-bottom: 10px;  }  IE6- (and IE7+ quirks) only /*\*/ * html selector...