Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Asciiart+font #14

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
4a89359
[backport from Chrome App] Linespacing.
ahyangyi Jun 24, 2013
3f6e78a
Merge remote-tracking branch 'origin/dev-v0.3.0' into asciiart
ahyangyi Jun 24, 2013
b68a447
Merge remote-tracking branch 'origin/master' into asciiart
ahyangyi Jun 25, 2013
c59071e
A Testing branch making use of RowellaSans
ahyangyi Jul 2, 2013
248c7af
试试1.5倍行距(跟上个commit是个并列关系)
ahyangyi Jul 3, 2013
1fa7e6f
弱智错误还是先修了吧。。。
ahyangyi Jul 3, 2013
b3a83f6
Merge remote-tracking branch 'rowell/master' into asciiart
ahyangyi Aug 23, 2013
5fff2d8
Merge branch 'asciiart' into asciiart+font
ahyangyi Aug 23, 2013
ceb912e
Merge remote-tracking branch 'roach/master' into asciiart+font
ahyangyi Jun 17, 2014
a589a43
Merge remote-tracking branch 'roach/master' into asciiart
ahyangyi Jun 17, 2014
d052889
Merge branch 'asciiart' into asciiart+font
ahyangyi Jun 17, 2014
360c0ea
Update style to make use of this font
ahyangyi Jun 17, 2014
6b2e1b5
Merge branch 'asciiart' into asciiart+font
ahyangyi Jun 17, 2014
40b4032
Move fonts to inside css/
ahyangyi Jun 17, 2014
9dea2bf
Merge branch 'rowell-master' into asciiart
ahyangyi Feb 10, 2015
92e456f
Merge branch 'asciiart' into asciiart+font
ahyangyi Feb 10, 2015
b3582b2
Merge branch 'master' of github.com:mrroach9/Rowell into asciiart
ahyangyi May 3, 2015
07e7906
Merge remote-tracking branch 'roach/master' into asciiart+font
ahyangyi May 20, 2015
cbbaafa
Merge branch 'asciiart' into asciiart+font
ahyangyi May 20, 2015
d3704c8
Revert to a regular height font
ahyangyi May 20, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added css/fonts/RowellaSans.ttf
Binary file not shown.
Binary file added css/fonts/RowellaSans.x1.5.ttf
Binary file not shown.
21 changes: 18 additions & 3 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
/* Import fonts */
@font-face {
font-family: 'RowellaSans';
font-style: normal;
font-weight: 400;
src: local('RowellaSans'), url(fonts/RowellaSans.ttf) format('truetype');
}

/* Main area sizes */

body {
Expand Down Expand Up @@ -173,8 +181,15 @@ pre.post-view-area {
margin-right: 10px;
min-height: 380px;
/* Overriding Bootstrap */
font-size: 14px;
line-height: 18px;
font-size: 13px;
line-height: 13px;
}
tt {
font-family: RowellaSans, monospace;
}

pre.post-view-area {
font-family: RowellaSans, monospace;
}

tr.board-entry,
Expand Down Expand Up @@ -883,4 +898,4 @@ input[type="file"].fileuploadbox {

.user-profile-anchor:not(:first-child) {
margin-left: 5px;
};
};