forked from zalando/tech-radar
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add htmlint, fixy errors, move css into own file
- Loading branch information
Showing
4 changed files
with
103 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
{ | ||
"plugins": [], // npm modules to load | ||
|
||
"maxerr": false, | ||
"raw-ignore-regex": false, | ||
"attr-bans": [ | ||
"align", | ||
"background", | ||
"bgcolor", | ||
"border", | ||
"frameborder", | ||
"longdesc", | ||
"marginwidth", | ||
"marginheight", | ||
"scrolling", | ||
"style", | ||
"width" | ||
], | ||
"indent-delta": false, | ||
"indent-style": "nonmixed", | ||
"indent-width": false, | ||
"indent-width-cont": false, | ||
"spec-char-escape": true, | ||
"text-ignore-regex": false, | ||
"tag-bans": [ | ||
"style", | ||
"b", | ||
"i" | ||
], | ||
"tag-close": true, | ||
"tag-name-lowercase": true, | ||
"tag-name-match": true, | ||
"tag-self-close": false, | ||
"doctype-first": false, | ||
"doctype-html5": false, | ||
"attr-name-style": "dash", | ||
"attr-name-ignore-regex": false, | ||
"attr-no-dup": true, | ||
"attr-no-unsafe-char": true, | ||
"attr-order": false, | ||
"attr-quote-style": "double", | ||
"attr-req-value": true, | ||
"attr-new-line": false, | ||
"attr-validate": true, | ||
"id-no-dup": true, | ||
"id-class-no-ad": true, | ||
"id-class-style": "underscore", | ||
"class-no-dup": true, | ||
"class-style": false, | ||
"id-class-ignore-regex": false, | ||
"img-req-alt": true, | ||
"img-req-src": true, | ||
"html-valid-content-model": true, | ||
"head-valid-content-model": true, | ||
"href-style": false, | ||
"label-req-for": true, | ||
"line-end-style": "lf", | ||
"line-no-trailing-whitespace": false, | ||
"line-max-len": false, | ||
"line-max-len-ignore-regex": false, | ||
"head-req-title": true, | ||
"title-no-dup": true, | ||
"title-max-len": 60, | ||
"html-req-lang": false, | ||
"lang-style": "case", | ||
"fig-req-figcaption": false, | ||
"focusable-tabindex-style": false, | ||
"input-radio-req-name": true, | ||
"input-req-label": false, | ||
"table-req-caption": false, | ||
"table-req-header": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
body { | ||
font-family: 'Source Sans Pro', arial, helvetica, sans-serif; | ||
padding-bottom: 50px; | ||
} | ||
h3 { | ||
margin-top: 50px; | ||
} | ||
li { | ||
margin: 25px 50px 0 0; | ||
} | ||
table { | ||
width: 1400px; | ||
margin: 0 50px 0 50px; | ||
} | ||
td { | ||
width: 50%; | ||
vertical-align: top; | ||
padding-right: 60px; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters