Skip to content

Commit 46469c2

Browse files
committed
Serve fonts from local server
1 parent c716239 commit 46469c2

File tree

4 files changed

+18
-2
lines changed

4 files changed

+18
-2
lines changed

share/roundup/templates/responsive/html/page.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
<meta name="description" content="Roundup is a python-based, MIT licensed issue-tracking system with command-line, web and e-mail interfaces">
1212
<meta name="viewport" content="width=device-width">
1313
<link rel="stylesheet" href="@@file/bootstrap.min.css">
14-
<link href='//fonts.googleapis.com/css?family=Ubuntu+Mono|Droid+Sans' rel='stylesheet'>
1514
<style>
1615
body { padding-top: 80px; padding-bottom: 40px; }
1716
</style>
40.1 KB
Binary file not shown.
Binary file not shown.

share/roundup/templates/responsive/static/style.css

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
@font-face {
2+
font-family: 'Droid Sans';
3+
src: url('DroidSans.ttf');
4+
font-weight: 400;
5+
}
6+
7+
@font-face {
8+
font-family: 'Ubuntu Mono';
9+
src: url('UbuntuMono-Regular.ttf');
10+
font-weight: 400;
11+
}
12+
113
body {
214
font-family: 'Droid Sans', sans-serif;
315
font-size: 13px;
@@ -6,8 +18,13 @@ body {
618
}
719

820
h1,
9-
h2 {
21+
h2,
22+
.brand {
1023
font-family: 'Ubuntu Mono', serif;
24+
}
25+
26+
h1,
27+
h2 {
1128
font-weight: normal;
1229
margin: 10px 0 20px 0;
1330
text-transform: uppercase;

0 commit comments

Comments
 (0)