Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: skin/issue-reporter.css

Issue 29587605: Issue 5888 - Made issue reporter use the right font (Closed) Base URL: https://hg.adblockplus.org/adblockplusui
Patch Set: Created Oct. 24, 2017, 11:05 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skin/issue-reporter.css
===================================================================
--- a/skin/issue-reporter.css
+++ b/skin/issue-reporter.css
@@ -1,20 +1,49 @@
+@font-face
+{
+ font-family: "Source Sans Pro";
+ src: url(fonts/SourceSansPro-Light.woff);
+ /* local("Ø") forces using no local font called Source Sans Pro */
+ src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff");
+ font-weight: 300;
+ font-style: normal;
+}
+
+@font-face
+{
+ font-family: "Source Sans Pro";
+ src: url(fonts/SourceSansPro-Regular.woff);
+ /* local("Ø") forces using no local font called Source Sans Pro */
+ src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff");
+ font-style: normal;
+}
+
+@font-face
+{
+ font-family: "Source Sans Pro";
+ src: url(fonts/SourceSansPro-bold.woff);
+ /* local("Ø") forces using no local font called Source Sans Pro */
+ src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff");
+ font-weight: 700;
+ font-style: normal;
+}
+
html
{
font-size: 16px;
}
body
{
display: flex;
flex-direction: column;
align-items: center;
margin: 1.2rem 0.3rem;
- font-family: Segoe UI, Arial, sans-serif;
+ font-family: "Source Sans Pro", sans-serif;
font-size: 1.25rem;
color: #494949;
background-color: #F3F3F3;
}
html:not([dir="rtl"]) header
{
text-align: right;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld