The purpose of this document is to articulate considerations, tools, and methodologies for UI architectures with regard to the code, UI design, and project management.
Always be closing shipping
The purpose of this document is to articulate considerations, tools, and methodologies for UI architectures with regard to the code, UI design, and project management.
Always be closing shipping
I hereby claim:
To claim this, I am signing this object:
import express from 'express' | |
import bodyParser from 'body-parser' | |
import rp from 'request-promise' | |
import Stellar from 'stellar-sdk' | |
/* Initialize app and configure bodyParser */ | |
const port = process.env.PORT || 4000 | |
const app = express() | |
app.use(bodyParser.json()) |
/* Bootstrap 4 Grid System Breakpoints CSS Media Query Template | |
* v. 1.00.00 | |
* Note: breakpoints according to bootstrap gridlines and common phone screen CSS pixels according to Google's Chrome inspector | |
* Arranged to create a hierarchical priority towards more specific queries | |
* Licensed under the MIT/X11 License (http://opensource.org/licenses/MIT) */ | |
@media screen and (max-width:1199px){} | |
@media screen and (max-width:991px){} | |
@media screen and (max-width:767px) {} | |
/* xs */ |
/* Bootstrap 3 Grid System Breakpoints CSS Media Query Template | |
* v. 1.00.00 | |
* Note: breakpoints according to bootstrap gridlines and common phone screen CSS pixels according to Google's Chrome inspector | |
* Arranged to create a hierarchical priority towards more specific queries | |
* Licensed under the MIT/X11 License (http://opensource.org/licenses/MIT) */ | |
@media screen and (max-width:1199px){} | |
@media screen and (max-width:991px){} | |
/* xs */ | |
@media screen and (max-width:767px){} |