A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);| //HTML | |
| /*===================== | |
| <div class="root"> | |
| <div class="imageplayer"> | |
| </div> | |
| </div> | |
| =======================*/ | |
| /* | |
| * Author: http://stuffandnonsense.co.uk/blog/about/hardboiled_css3_media_queries/ | |
| */ | |
| /* Smartphones (portrait and landscape) ----------- */ | |
| @media only screen | |
| and (min-device-width : 320px) | |
| and (max-device-width : 480px) { | |
| /* Styles */ | |
| } |
| function abnValidate(value, element){ | |
| if (value.length != 11 || isNaN(parseInt(value))) | |
| return false; | |
| var weighting =[10,1,3,5,7,9,11,13,15,17,19]; | |
| var tally = (parseInt(value[0]) - 1) * weighting[0]; | |
| for (var i = 1; i < value.length; i++){ | |
| tally += (parseInt(value[i]) * weighting[i]); | |
| } | |
| return (tally % 89) == 0; | |
| } |
| Postcode, Suburb, State, Lat, Lan | |
| 200, Australian National University, ACT, -35.280, 149.120 | |
| 221, Barton, ACT, -35.200, 149.100 | |
| 800, Darwin, NT, -12.800, 130.960 | |
| 801, Darwin, NT, -12.800, 130.960 | |
| 804, Parap, NT, -12.430, 130.840 | |
| 810, Alawa, NT, -12.380, 130.880 | |
| 810, Brinkin, NT, -12.380, 130.880 | |
| 810, Casuarina, NT, -12.380, 130.880 | |
| 810, Coconut Grove, NT, -12.380, 130.880 |
| # Compiled source # | |
| ################### | |
| *.com | |
| *.class | |
| *.dll | |
| *.exe | |
| *.o | |
| *.so | |
| # Packages # |
| /*Note: add class "tabSet1" or "tabSet2" after ul.tabs and tab-content */ | |
| function tab(x) { | |
| var a = $('ul.tabs.' + x + ' ' + 'li'); | |
| a.click(function () { | |
| var tab_id = $(this).attr('data-tab'); | |
| a.removeClass('active'); | |
| $('.tab-content.' + x).removeClass('active'); | |
| $(this).addClass('active'); |
| //It will work for the element that has position: relative | |
| function postionMiddle(e) { | |
| var capHeightHalf = $(e).innerHeight() / 2, | |
| capParentHeightHalf = $(e).parent().innerHeight() / 2, | |
| capPosition = capParentHeightHalf - capHeightHalf; | |
| $(e).css("top", capPosition ); | |
| } | |
| postionMiddle(".caption"); // place your element instead .caption |
| $(document).ready(function () { | |
| $.fn.extend({ | |
| tmpClass: function (className, duration) { | |
| var elements = this; | |
| setTimeout(function () { | |
| elements.removeClass(className); | |
| }, duration); | |
| return this.each(function () { |