Skip to content

Instantly share code, notes, and snippets.

View nicohq's full-sized avatar

Nico nicohq

  • Kyiv, Ukraine
  • 12:55 (UTC +03:00)
View GitHub Profile
@nicohq
nicohq / font-face
Last active December 19, 2015 11:59 — forked from atatos/font-face
@font-face {
font-family: 'MyWebFont';
src: local('MyWebFont');
src: url('webfont.eot'); /* IE9 Compat Modes */
src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
url('webfont.woff') format('woff'), /* Modern Browsers */
url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */
url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */
}
@nicohq
nicohq / gist:5697764
Last active December 18, 2015 00:38 — forked from anttti/gist:2017726
hide text under bg
.hide-text {
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
}
@nicohq
nicohq / clearfix.css
Last active December 17, 2015 18:49 — forked from craigerskine/clearfix.css
.clearfix:before,
.clearfix:after {
content: " ";
display: table;
}
.clearfix:after {
clear: both;
}