-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up smarter looking prev/next arrows for chapters
- Loading branch information
Showing
10 changed files
with
184 additions
and
21 deletions.
There are no files selected for viewing
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
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
.icon-right-open:before { content: '\e800'; } /* '' */ | ||
.icon-left-open:before { content: '\e801'; } /* '' */ | ||
.icon-down-open:before { content: '\e802'; } /* '' */ | ||
.icon-attention:before { content: '\e803'; } /* '' */ | ||
.icon-attention-circled:before { content: '\e804'; } /* '' */ | ||
.icon-rss:before { content: '\e805'; } /* '' */ | ||
.icon-rss-squared:before { content: '\e806'; } /* '' */ | ||
.icon-attention-alt:before { content: '\e807'; } /* '' */ | ||
.icon-comment-empty:before { content: '\e808'; } /* '' */ | ||
.icon-export:before { content: '\e809'; } /* '' */ | ||
.icon-export-alt:before { content: '\e80a'; } /* '' */ | ||
.icon-twitter-squared:before { content: '\e80b'; } /* '' */ | ||
.icon-twitter:before { content: '\e80c'; } /* '' */ |
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url('../font/fontello.eot'); | ||
src: url('../font/fontello.eot#iefix') format('embedded-opentype'), | ||
url('../font/fontello.woff') format('woff'), | ||
url('../font/fontello.ttf') format('truetype'), | ||
url('../font/fontello.svg#fontello') format('svg'); | ||
font-weight: normal; | ||
font-style: normal; | ||
} | ||
/* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ | ||
/* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ | ||
/* | ||
@media screen and (-webkit-min-device-pixel-ratio:0) { | ||
@font-face { | ||
font-family: 'fontello'; | ||
src: url('../font/fontello.svg#fontello') format('svg'); | ||
} | ||
} | ||
*/ | ||
|
||
[class^="icon-"]:before, [class*=" icon-"]:before { | ||
font-family: "fontello"; | ||
font-style: normal; | ||
font-weight: normal; | ||
speak: none; | ||
|
||
display: inline-block; | ||
text-decoration: inherit; | ||
width: 1em; | ||
margin-right: .2em; | ||
text-align: center; | ||
/* opacity: .8; */ | ||
|
||
/* For safety - reset parent styles, that can break glyph codes*/ | ||
font-variant: normal; | ||
text-transform: none; | ||
|
||
/* fix buttons height, for twitter bootstrap */ | ||
line-height: 1em; | ||
|
||
/* Animation center compensation - margins should be symmetric */ | ||
/* remove if not needed */ | ||
margin-left: .2em; | ||
|
||
/* you can be more comfortable with increased icons size */ | ||
/* font-size: 120%; */ | ||
|
||
/* Font smoothing. That was taken from TWBS */ | ||
-webkit-font-smoothing: antialiased; | ||
-moz-osx-font-smoothing: grayscale; | ||
|
||
/* Uncomment for 3D effect */ | ||
/* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ | ||
} | ||
|
||
.icon-right-open:before { content: '\e800'; } /* '' */ | ||
.icon-left-open:before { content: '\e801'; } /* '' */ | ||
.icon-down-open:before { content: '\e802'; } /* '' */ | ||
.icon-attention:before { content: '\e803'; } /* '' */ | ||
.icon-attention-circled:before { content: '\e804'; } /* '' */ | ||
.icon-rss:before { content: '\e805'; } /* '' */ | ||
.icon-rss-squared:before { content: '\e806'; } /* '' */ | ||
.icon-attention-alt:before { content: '\e807'; } /* '' */ | ||
.icon-comment-empty:before { content: '\e808'; } /* '' */ | ||
.icon-export:before { content: '\e809'; } /* '' */ | ||
.icon-export-alt:before { content: '\e80a'; } /* '' */ | ||
.icon-twitter-squared:before { content: '\e80b'; } /* '' */ | ||
.icon-twitter:before { content: '\e80c'; } /* '' */ |