Skip to content

Instantly share code, notes, and snippets.

View iosdevelop's full-sized avatar
💭
I may be slow to respond.

Andre Morrison iosdevelop

💭
I may be slow to respond.
View GitHub Profile

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@iosdevelop
iosdevelop / outline.css
Last active May 6, 2025 21:03
Troubleshoot CSS layout bad bugs with this outline [Archived]
* {
outline: 1px solid red !important;
}
@iosdevelop
iosdevelop / replaceH2.js
Created September 11, 2017 14:15
Replace h2 with h1 [Archived]
$('h2').replaceWith(function(){ return $('<h1 />',{html: $(this).html()}); });
@iosdevelop
iosdevelop / gist:a0edfebde644c6bb3a3f
Created June 29, 2015 13:16
Countries Listing for Drupal Webform
AF|Afghanistan
AX|Åland Islands
AL|Albania
DZ|Algeria
AS|American Samoa
AD|Andorra
AO|Angola
AI|Anguilla
AQ|Antarctica
AG|Antigua and Barbuda
/*You can use filters by -webkit-filter: Filters is very new to browsers and is only support in very modern browsers. You can change an image to grayscale, sepia and lot more (look at the example).
So you can now change color of a PNG file with filters now.*/
body {
background-color:#03030a;
min-width: 800px;
min-height: 400px
}
img {