Skip to content

Instantly share code, notes, and snippets.

@itaides
itaides / README.md
Created June 25, 2022 19:45 — forked from lopspower/README.md
Hexadecimal color code for transparency

Hexadecimal color code for transparency

Twitter

How to set transparency with hex value ?

For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.

Download This sample on Google Play Store

@itaides
itaides / index.html
Created June 20, 2022 08:27
Split Text GSAP
<div id="citation">
coucou!
</div>
@itaides
itaides / customize-password-protected-text.php
Created May 24, 2021 08:41 — forked from luclemo/customize-password-protected-text.php
Add text to your password form, modify the HTML form, change the default `Protected:` title prefix. #wordpress
<?php
/**
* If you want to add text to your password form
*
* @link https://developer.wordpress.org/reference/hooks/the_password_form/
*/
add_action( 'the_password_form', 'll_the_password_form' );
function ll_the_password_form( $output )
{
@itaides
itaides / media-query.css
Created May 3, 2021 11:53 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
/* CSS */