├── assets ├── css │ └── style.css ├── fonts │ ├── Menlo-Bold.woff │ ├── Menlo-BoldItalic.woff │ ├── Menlo-Italic.woff │ └── Menlo-Regular.woff └── js │ └── script.js └── index.html /assets/css/style.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: "Menlo"; 3 | font-style: normal; 4 | font-weight: normal; 5 | src: url("../fonts/Menlo-Regular.woff") format("woff"); 6 | } 7 | @font-face { 8 | font-family: "Menlo"; 9 | font-style: normal; 10 | font-weight: bold; 11 | src: url("../fonts/Menlo-Bold.woff") format("woff"); 12 | } 13 | @font-face { 14 | font-family: "Menlo"; 15 | font-style: italic; 16 | font-weight: normal; 17 | src: url("../fonts/Menlo-Italic.woff") format("woff"); 18 | } 19 | @font-face { 20 | font-family: "Menlo"; 21 | font-style: italic; 22 | font-weight: bold; 23 | src: url("../fonts/Menlo-BoldItalic.woff") format("woff"); 24 | } 25 | 26 | ::-webkit-scrollbar { 27 | -webkit-appearance: none; 28 | width: 7px; 29 | } 30 | 31 | ::-webkit-scrollbar-thumb { 32 | border-radius: 4px; 33 | background-color: rgba(0, 0, 0, .5); 34 | box-shadow: 0 0 1px rgba(255, 255, 255, .5); 35 | } 36 | 37 | body { 38 | margin-top: 10px; 39 | } 40 | 41 | textarea 42 | { 43 | font-family: "Menlo", 'Courier New', Courier, monospace; 44 | height: 25vh; 45 | } 46 | 47 | .modal-body { 48 | max-height: 60vh; 49 | overflow-y: scroll; 50 | } -------------------------------------------------------------------------------- /assets/fonts/Menlo-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/API_boilerplate/947b467664a6ab85bba7482abdafe3cdee73a684/assets/fonts/Menlo-Bold.woff -------------------------------------------------------------------------------- /assets/fonts/Menlo-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/API_boilerplate/947b467664a6ab85bba7482abdafe3cdee73a684/assets/fonts/Menlo-BoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/Menlo-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/API_boilerplate/947b467664a6ab85bba7482abdafe3cdee73a684/assets/fonts/Menlo-Italic.woff -------------------------------------------------------------------------------- /assets/fonts/Menlo-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/API_boilerplate/947b467664a6ab85bba7482abdafe3cdee73a684/assets/fonts/Menlo-Regular.woff -------------------------------------------------------------------------------- /assets/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Code-Institute-Solutions/API_boilerplate/947b467664a6ab85bba7482abdafe3cdee73a684/assets/js/script.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | 10 | 11 | JSHint Front End 12 | 13 | 14 | 15 |
16 |
17 |
18 |

JSHinterface

19 |
20 |
21 | 22 |
23 |
24 |
25 |

26 |
27 |
28 |
29 |
30 |
31 | 32 |
33 | 34 | Mandatory if you are pasting code, but not used if you enter a URL. 35 |
36 |
37 |
38 | 39 |
40 | 41 | Enter a URL or paste JavaScript content below. 42 |
43 |
44 |
45 | 46 |
47 |
48 | 49 | 50 |
51 |
52 | 53 | 54 |
55 |
56 | 57 | 58 |
59 |
60 | 61 | 62 |
63 |
64 | 65 | 66 |
67 |
68 | 69 | 70 |
71 |
72 |
73 |
74 | 75 |
76 |
77 |
78 |
79 |
80 | 81 |
82 |
83 |
84 | 85 | 86 | 101 | 102 | 105 | 106 | 107 | 108 | --------------------------------------------------------------------------------