Skip to content

Instantly share code, notes, and snippets.

View zehmatias's full-sized avatar

José Matias zehmatias

View GitHub Profile
@Shurastei
Shurastei / Tetris
Created December 18, 2020 05:13
Para jogar Tetris
import pygame
import random
# Tetris, na moralzinha ;)
colors = [
(0, 0, 0),
(120, 37, 179),
(100, 179, 179),
(80, 34, 22),
(80, 134, 22),
@landru247
landru247 / Contact Form 7: validation.css
Created April 2, 2014 16:55
Contact Form 7: validation - removes the error/success message and removes the default field validation and replaces with colored fields
div.wpcf7-response-output, div.wpcf7-validation-errors { display: none !important; }
span.wpcf7-not-valid-tip { display: none; }
input[aria-invalid="true"], select[aria-invalid="true"] { border-color: red; background-color: rgba(153,0,0,0.3); }