Initial commit; page is a clone of bonifacelabs.ca but with changed content (of course).

This commit is contained in:
2016-09-28 11:57:16 -04:00
parent 3f7acc4568
commit e9ede5dd9a
52 changed files with 6040 additions and 0 deletions

View File

@ -0,0 +1,28 @@
/* Apply these base styles to all icons */
.icon-feed, .icon-twitter, .icon-google-plus, .icon-facebook {
font-family: 'icons';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
text-decoration: none;
}
/* Each icon is created by inserting the corret character into the
content of the :before pseudo element. Like a boss. */
.icon-feed:before {
content: "\e001";
}
.icon-twitter:before {
content: "\e002";
font-size: 1.1em;
}
.icon-google-plus:before {
content: "\e003";
}
.icon-facebook:before {
content: "\e004";
}