content/styles/_h3rald.scss
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
@font-face {
font-family: 'H3RALD';
src:url('../fonts/h3rald-eot.eot');
src:url('../fonts/h3rald-eot.eot?#iefix') format('embedded-opentype'),
url('../fonts/h3rald-ttf.ttf') format('truetype'),
url('../fonts/h3rald-woff.woff') format('woff'),
url('../fonts/h3rald-svg.svg#h3rald') format('svg');
font-weight: normal;
font-style: normal;
}
.h3rald {
font-family: "H3RALD";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
/* Better Font Rendering =========== */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
content: "\e7c4";
display: inline;
}
.h3rald:before {
content: "\e7c4";
}
.h3rald-header, .navbar a.h3rald.h3rald-header {
font-size: 50px;
color: $light-text;
text-shadow: 0 1px 1px #111;
&:hover {
text-decoration: none;
}
}
.h3rald-footer {
position: relative;
top: 3px;
font-size: 15px;
color: #fff;
}
|