Skip to content

Instantly share code, notes, and snippets.

View mrmrs's full-sized avatar

Adam Morse mrmrs

View GitHub Profile
.left-max-scr1,
.left-max-scr2,
.left-max-scr3,
.left-only-scr1 {
float: left;
}
.left {
float: left!important;
}
.container-inner.promo-status {
float: center;
}
.product-tab {
height: 530px;
width: 99.7%;
}
#seo-container {
display: none
}
.homepage-promos .grid-50 {
width: 100%
}
.homepage-promos .grid-33 {
width: 100%
}
.homepage-promos .grid-34 {
width: 100%
}
import theme from './theme'
const buttonTheme = {
radii: theme.radii, // Entire scale
space: [
// Explicit steps from the scale
theme.space[3],
theme.space[4],
],
fontSize: theme.fontSize.slice(0,-8), // Everything but the last 8 steps in the scale
import theme from './theme'
const buttonThemeTemplate = {
// Typography
fontFamily: [ ],
fontSize: [ ],
fontWeight: [ ],
textTransform: [ ],
const theme = {`
breakpoints: [ 36, 48, 64 ],
fontFamily:[ '"Gotham", "Avenir Next", "Proxima Nova", "Helvetica"' ],
fontSize: [
12, 14, 16, 20, 24, 32, 48, 64, 96, 128
],
fontWeight: [ 400, 600, 700 ],
lineHeight: [ 1, 1.25, 1.5 ],
colors: [
{ text: "#000", bg: "#fff" },
@mrmrs
mrmrs / struped-cube.go
Created November 24, 2020 23:10
striped-cube.go
package main
import "github.com/fogleman/ln/ln"
type StripedCube struct {
ln.Cube
Stripes int
}
func (c *StripedCube) Paths() ln.Paths {