Hexadecimal color code for transparency
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
.
For example, you want to set 40% alpha transparence to #000000
(black color), you need to add 66
like this #66000000
.
/* | |
##Device = Desktops | |
##Screen = 1281px to higher resolution desktops | |
*/ | |
@media (min-width: 1281px) { | |
/* CSS */ | |
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
.myBounceDiv { | |
-moz-animation:bounce .40s linear; | |
-webkit-animation:bounce .40s linear; | |
} | |
@-moz-keyframes bounce { | |
0%{ -moz-transform:scale(0); opacity:0;} | |
50%{ -moz-transform:scale(1.3); opacity:0.4; } | |
75%{ -moz-transform:scale(0.9); opacity:0.7;} | |
100%{ -moz-transform:scale(1); opacity:1;} |
start new:
tmux
start new with session name:
tmux new -s myname