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

Side by Side 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.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 @font-face
2 {
3 font-family: "Source Sans Pro";
4 src: url(fonts/SourceSansPro-Light.woff);
5 /* local("Ø") forces using no local font called Source Sans Pro */
6 src: local("Ø"), url(fonts/SourceSansPro-Light.woff) format("woff");
7 font-weight: 300;
8 font-style: normal;
9 }
10
11 @font-face
12 {
13 font-family: "Source Sans Pro";
14 src: url(fonts/SourceSansPro-Regular.woff);
15 /* local("Ø") forces using no local font called Source Sans Pro */
16 src: local("Ø"), url(fonts/SourceSansPro-Regular.woff) format("woff");
17 font-style: normal;
18 }
19
20 @font-face
21 {
22 font-family: "Source Sans Pro";
23 src: url(fonts/SourceSansPro-bold.woff);
24 /* local("Ø") forces using no local font called Source Sans Pro */
25 src: local("Ø"), url(fonts/SourceSansPro-bold.woff) format("woff");
26 font-weight: 700;
27 font-style: normal;
28 }
29
1 html 30 html
2 { 31 {
3 font-size: 16px; 32 font-size: 16px;
4 } 33 }
5 34
6 body 35 body
7 { 36 {
8 display: flex; 37 display: flex;
9 flex-direction: column; 38 flex-direction: column;
10 align-items: center; 39 align-items: center;
11 margin: 1.2rem 0.3rem; 40 margin: 1.2rem 0.3rem;
12 font-family: Segoe UI, Arial, sans-serif; 41 font-family: "Source Sans Pro", sans-serif;
13 font-size: 1.25rem; 42 font-size: 1.25rem;
14 color: #494949; 43 color: #494949;
15 background-color: #F3F3F3; 44 background-color: #F3F3F3;
16 } 45 }
17 46
18 html:not([dir="rtl"]) header 47 html:not([dir="rtl"]) header
19 { 48 {
20 text-align: right; 49 text-align: right;
21 margin-right: 2rem; 50 margin-right: 2rem;
22 } 51 }
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 background-color: transparent; 279 background-color: transparent;
251 background-image: url(icons/checkbox.png); 280 background-image: url(icons/checkbox.png);
252 display: inline-block; 281 display: inline-block;
253 } 282 }
254 283
255 input[type="checkbox"]:checked, 284 input[type="checkbox"]:checked,
256 input[type="radio"]:checked 285 input[type="radio"]:checked
257 { 286 {
258 background-position: 0px 18px; 287 background-position: 0px 18px;
259 } 288 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld