This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&:after, &:before{ | |
content: ''; | |
display: table; | |
} | |
&:after{ | |
clear: both; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
input[type=number]::-webkit-inner-spin-button, | |
input[type=number]::-webkit-outer-spin-button { | |
-webkit-appearance: none; | |
-moz-appearance: none; | |
appearance: none; | |
margin: 0; | |
} | |
input[type=number]{ | |
-moz-appearance: textfield; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* set height for mobile menu */ | |
var headerHeight = 80; | |
jQuery('.navbar-toggle').on('click', function(){ | |
jQuery('.navbar-collapse').delay(400).queue(function(next){ | |
jQuery(this).css('height', window.innerHeight-headerHeight); | |
next(); | |
}); | |
}) | |
<div class="collapse navbar-collapse" id="navbar-collapse-1"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="format-detection" content="telephone=no"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.modal-backdrop.in { | |
opacity: 0.9; | |
background-color: black; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.modal { | |
text-align: center; | |
padding: 0!important; | |
} | |
.modal:before { | |
content: ''; | |
display: inline-block; | |
height: 100%; | |
vertical-align: middle; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul{ | |
display: flex; | |
&::before, &::after { | |
content: ''; | |
width: 100%; | |
order: 1; | |
-webkit-order: 1; | |
} | |
>li{ | |
display: inline-block; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* button to cross */ | |
.navbar-toggle .icon-bar:nth-of-type(2) { | |
top: 1px; | |
} | |
.navbar-toggle { | |
.icon-bar { | |
position: relative; | |
transition: all 500ms ease-in-out; | |
&:nth-of-type(2) { | |
top: 3px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { | |
-webkit-font-smoothing: subpixel-antialiased; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* For SVG */ | |
.bg { | |
background: url('data:image/svg+xml;utf8,<svg ...> ... </svg>'); | |
} | |