Skip to content

Instantly share code, notes, and snippets.

View madebyallie's full-sized avatar

allie madebyallie

View GitHub Profile
.ui-datepicker {
background-color: #fff;
border: 1px solid #66AFE9;
border-radius: 4px;
box-shadow: 0 0 8px rgba(102,175,233,.6);
display: none;
margin-top: 4px;
padding: 10px;
width: 240px;
}
@madebyallie
madebyallie / gist:c003e9e820aaf56b6fc1
Created June 22, 2015 09:35
SQL statement to truncate a MySQL table that has foreign keys
SET FOREIGN_KEY_CHECKS = 0;
TRUNCATE table_name;
SET FOREIGN_KEY_CHECKS = 1;
@madebyallie
madebyallie / Foundation 5 font sizes on small screens
Created April 1, 2015 11:58
Foundation 5 scss font sizes on small screens
//I find the default header size reductions in the setting.scss leave h2 and h4 tags a little off for my tastes.
//I make these changes in lines 219 and 221
// We use these to control header size reduction on small screens
// $h1-font-reduction: rem-calc(10) !default;
$h2-font-reduction: rem-calc(6) !default;
// $h3-font-reduction: rem-calc(5) !default;
$h4-font-reduction: rem-calc(4) !default;
// $h5-font-reduction: 0 !default;