Skip to content

Instantly share code, notes, and snippets.

View hCante's full-sized avatar

Hugo Muralles hCante

View GitHub Profile
@hCante
hCante / gist:4e701228176cf14c08de
Created September 3, 2014 22:26
Basic Wordpress .gitignore
.htaccess
wp-content/uploads/
wp-content/uploads/*
wp-config.php
wp-config-sample.php
readme.html
licencia.txt
license.txt
@hCante
hCante / gist:81659e1735b2258728a9
Created September 3, 2014 22:15
My Gruntfile.js
module.exports = function(grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
sass: {
options: {
includePaths: ['bower_components/foundation/scss']
},
dist: {
@hCante
hCante / basic_contact_form
Last active September 6, 2019 14:03
Basic styles for a standard in SCSS for Contact Form 7 Wordpress Plugin
.wpcf7-form {
.wpcf7-form-control-wrap {
input[type=text], input[type=email] {
border: 1px solid #999;
border-radius: 20px;
padding: 0.6em;
width: 80%;
&:focus {
border: 1px #666 solid;
}