Skip to content

Instantly share code, notes, and snippets.

View loftusjl's full-sized avatar
😶‍🌫️
bacon

Jesse Loftus loftusjl

😶‍🌫️
bacon
  • Middletown, Ohio
  • 03:49 (UTC -04:00)
View GitHub Profile
@loftusjl
loftusjl / Register.jsx
Last active December 9, 2020 18:42
Registration Section Template
<section id="sectionID">
<h2>Section Title</h2>
<hr />
<small>Required fields = *</small>
<div className="inputRow">
<div className="col m-input small">
<label className="required">InputName:</label>
<input
type="text"
className="form-control"
@loftusjl
loftusjl / 01-directory-structure.md
Created March 3, 2019 23:54 — forked from tracker1/01-directory-structure.md
Anatomy of a JavaScript/Node project.

Directory structure for JavaScript/Node Projects

While the following structure is not an absolute requirement or enforced by the tools, it is a recommendation based on what the JavaScript and in particular Node community at large have been following by convention.

Beyond a suggested structure, no tooling recommendations, or sub-module structure is outlined here.

Directories

  • lib/ is intended for code that can run as-is
  • src/ is intended for code that needs to be manipulated before it can be used
@loftusjl
loftusjl / media-query.css
Created March 3, 2019 23:51 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS