Skip to content
This repository has been archived by the owner on Dec 18, 2019. It is now read-only.

change font type to fix jenkins fe view #122

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
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
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,7 @@
"homepage": "https://github.com/liip/TheA11yMachine#readme",
"main": "./lib/a11ym.js",
"dependencies": {
"HTML_CodeSniffer": "https://github.com/squizlabs/HTML_CodeSniffer#master",
"async": "^2.1.4",
"HTML_CodeSniffer": "git+https://github.com/squizlabs/HTML_CodeSniffer.git#d209ce54876657858a8a01528ad812cd234f37f0", "async": "^2.1.4",
JonasHillerDkd marked this conversation as resolved.
Show resolved Hide resolved
"chalk": "^1.1.3",
"commander": "^2.9.0",
"crypto": "0.0.3",
Expand Down
15 changes: 5 additions & 10 deletions view/common.css
Original file line number Diff line number Diff line change
@@ -1,19 +1,14 @@
@font-face {
font-family: Source Sans Pro;
font-style: normal;
font-weight: 200;
src: local(Source Sans Pro ExtraLight),
local(SourceSansPro-ExtraLight),
url(https://fonts.gstatic.com/s/sourcesanspro/v9/toadOcfmlt9b38dHJxOBGIAPdqzPmKFFIYQ-46z3JxY.woff2) format('woff2');
}

* {
margin: 0;
padding: 0;
}

body {
font: .9em/1.2em Source Sans Pro;
JonasHillerDkd marked this conversation as resolved.
Show resolved Hide resolved
font-style: normal;
font-weight: 200;
font-size: .9em;
line-height: 1.2em;
font-family: Arial, Verdana, Helvetica, sans-serif;
color: rgb(43, 6, 1);
}

Expand Down