Skip to content

Instantly share code, notes, and snippets.

View juliuscsurgo's full-sized avatar

Julius Csurgo juliuscsurgo

View GitHub Profile
@juliuscsurgo
juliuscsurgo / CSS: Transparent Border
Created January 3, 2013 17:11
Making CSS border transparent without images
.container {
-webkit-box-shadow: 0px 0px 0px 4px rgba(0,0,0,0.3);
box-shadow: 0px 0px 0px 4px rgba(0,0,0,0.3);
}
@juliuscsurgo
juliuscsurgo / Bootstrap: no blue glow
Created January 3, 2013 01:29
Twitter Bootstrap: remove the blue glow in the form inputs
input[type="text"], textarea {
outline: none;
box-shadow:none !important;
border:1px solid #ccc !important;
}