Skip to content

Instantly share code, notes, and snippets.

View edy2310's full-sized avatar
:octocat:

Edgar Muñoz edy2310

:octocat:
View GitHub Profile
.cool-text{
-webkit-text-stroke: 1.2px black;
text-shadow: 4px 2px 0px #d16476;
}
.cool-text {
-webkit-text-stroke: 1px #d16476;
}
.cool-text {
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #d16476;
}
#dog{
filter: blur(2px);
}
img{
filter:the_filter_to_be_applied(value_of_the_filer)
}
#dog{
filter: grayscale(1)
}
:root {
--colorCat: coral;
--sizeCat: 2em;
}
.cat{
color: var(--colorCat);
font-size: var(--sizeCat);
}
@edy2310
edy2310 / variables.css
Last active October 10, 2018 18:28
CSS Variables
:root {
--colorCat: coral;
}
.cat{
color: var(--colorCat);
}