Skip to content

Instantly share code, notes, and snippets.

View Tummyache's full-sized avatar

Nick Heckman Tummyache

  • Aura Softworks
  • Oviedo, FL
View GitHub Profile
@Tummyache
Tummyache / Teleporter.gd
Created May 3, 2022 23:25
Godot Teleporter
extends Area2D
enum TeleportDirection {
UP,
RIGHT,
DOWN,
LEFT,
NONE
}
@Tummyache
Tummyache / grid.scss
Last active April 21, 2020 18:39
The simplest Scss grid
// A simple and clean Scss grid, no bells, no whistles, just 12 columns.
// Breakpoint for mobile sizes (portrait iPad)
$break-med: 768px;
.container {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-gap: 0 10px;
width: 100%;