Skip to content

Instantly share code, notes, and snippets.

@Sstobo
Sstobo / jsforjson.txt
Last active November 1, 2017 18:18
[JS for JSON] # json
var person = {
name: "Brad",
age: 35,
kids: ["dave", "nick"],
address: {
street: "Mansfield",
city: "ottawa"
}
}
@Sstobo
Sstobo / grid.txt
Last active November 1, 2017 17:55
[Expanding grid from nothing] #css #grid
.wrapper {
transition:all 1.4s;
height: 2000px;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 2fr 1fr 85% 1fr;
background-color: black;
color: white;
max-width: 1240px;
min-width: 320px;
@Sstobo
Sstobo / button-counter
Last active October 26, 2017 19:00
[Counter button] #js
$("#update").click(function() {
count++;
$("#counter").html("My current count is: "+count);
}
@Sstobo
Sstobo / grid-response.txt
Last active November 1, 2017 18:20
[Nested GRID responsive] #grid
grid-template-columns: 1fr 1fr 50VW<------ 1fr 1fr
set the wrappers grid box to VW to make nested items responsive