A Pen by Kelvin Morrison on CodePen.
This file contains hidden or 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
| /* smartphones, iPhone, portrait 480x320 phones */ | |
| /* portrait e-readers (Nook/Kindle), smaller tablets @ 600 or @ 640 wide. */ | |
| /* portrait tablets, portrait iPad, landscape e-readers, landscape 800x480 or 854x480 phones */ | |
| /* tablet, landscape iPad, lo-res laptops ands desktops */ | |
| /* big landscape tablets, laptops, and desktops */ | |
| /* hi-res laptops and desktops */ | |
| @media (min-width:320px) {} | |
| @media (min-width:481px) {} | |
| @media (min-width:641px) {} | |
| @media (min-width:961px) {} |
This file contains hidden or 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
| { | |
| "trailingComma": "none", | |
| "tabWidth": 2, | |
| "semi": true, | |
| "singleQuote": true, | |
| "arrowParens": "always" | |
| } |
This file contains hidden or 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
| { | |
| "extends": [ | |
| "eslint:recommended", | |
| "plugin:react/recommended", | |
| "plugin:react/jsx-runtime", | |
| "prettier" | |
| ], | |
| "env": { | |
| "browser": true | |
| }, |
This file contains hidden or 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
| { | |
| // security trust window, open = not shown | |
| "security.workspace.trust.untrustedFiles": "open", | |
| // configure git-bash (windows-only for git-bash users) | |
| "terminal.integrated.profiles.windows": { | |
| "Git Bash": { | |
| "path": "C:\\Program Files\\Git\\bin\\bash.exe", | |
| "args": ["-l", "-i"] | |
| } |
This file contains hidden or 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
| /** | |
| * Modify the parts you need to get it working. | |
| */ | |
| var should = require('should'); | |
| var request = require('../node_modules/request'); | |
| var io = require('socket.io-client'); | |
| var serverUrl = 'http://localhost'; |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>HTML iframe Tag</title> | |
| </head> | |
| <body> | |
| <h1>HTML5 Tutorial</h1> | |
| <iframe src = " https://www.tutorialspoint.com/html5/html5_tutorial.pdf" style="width:500px; height:300px;"></iframe> | |
| </body> | |
| </html> |
This file contains hidden or 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
| <div class="taskbar"> | |
| <img src="https://i.ibb.co/J5P7Y39/icons.png" alt="taskbarcenter"> | |
| <img class="right" src="https://i.ibb.co/hB9wF0j/taskbarright.png" alt="taskbarright"> | |
| </div> | |
| <div class="startmenu"> | |
| <img src="https://i.ibb.co/PtfvNSt/start-menu.png" alt="startmenu"> | |
| </div> |
This file contains hidden or 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
| // SPDX-License-Identifier: AGPL-3.0-or-later | |
| // The ABI encoder is necessary, but older Solidity versions should work | |
| pragma solidity ^0.7.0; | |
| pragma experimental ABIEncoderV2; | |
| // These definitions are taken from across multiple dydx contracts, and are | |
| // limited to just the bare minimum necessary to make flash loans work. | |
| library Types { | |
| enum AssetDenomination { Wei, Par } |
This file contains hidden or 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
| <div id="root"></div> |
NewerOlder