86 |
87 |
88 |
89 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "license": "Apache-2.0",
3 | "repository": {
4 | "type": "git",
5 | "url": "https://github.com/video-game-coding-club/crypto-webpage.git"
6 | },
7 | "devDependencies": {
8 | "@babel/core": "^7.12.3",
9 | "@babel/preset-env": "^7.12.1",
10 | "babel-jest": "^26.6.1",
11 | "browser-sync": "^2.26.13",
12 | "eslint": "^7.11.0",
13 | "eslint-config-standard": "^14.1.1",
14 | "eslint-plugin-import": "^2.22.1",
15 | "eslint-plugin-node": "^11.1.0",
16 | "eslint-plugin-promise": "^4.2.1",
17 | "eslint-plugin-standard": "^4.0.1",
18 | "htmllint": "^0.8.0",
19 | "htmllint-cli": "0.0.7",
20 | "http-server": "^0.12.3",
21 | "jest": "^26.6.0",
22 | "jquery": "^3.5.1",
23 | "markdownlint-cli": "^0.24.0",
24 | "npm-check-updates": "^9.1.2",
25 | "stylelint": "^13.7.2",
26 | "stylelint-config-standard": "^20.0.0"
27 | },
28 | "scripts": {
29 | "start": "browser-sync --no-ui",
30 | "test": "jest"
31 | },
32 | "jest": {
33 | "setupFiles": [
34 | "./setup-jest.js"
35 | ]
36 | }
37 | }
38 |
--------------------------------------------------------------------------------
/setup-jest.js:
--------------------------------------------------------------------------------
1 | import $ from 'jquery';
2 | global.$ = global.jQuery = $;
3 |
--------------------------------------------------------------------------------
/style.css:
--------------------------------------------------------------------------------
1 | body {
2 | background-image: url('assets/5747307011a29592cb7dedcf279a6e81.jpg');
3 | }
4 |
5 | div {
6 | background: #7f7f7f;
7 | background: rgba(255, 255, 255, 0.4);
8 | display: inline-block;
9 | width: fit-content;
10 | }
11 |
--------------------------------------------------------------------------------