I'm looking for a part-time remote job.
I'm the author of:
Mastering Redmine is a comprehensive guide with tips, tricks and best practices, and an easy-to-learn structure.
Check the book's project or
Social pages of the book:
By buying this book you also donate to Redmine (see this page).
Added by Miodrag Milic over 10 years ago
blink
Blinking tekst arg1, arg2 - CSS colors.
<style> .text_blink { color:%[1]; font-weight:bold; animation: blink 2s step-end infinite; -webkit-animation: blink 2s step-end infinite; } @keyframes blink { 0% {color: %[1]} 50% {color: %[2]} } @-webkit-keyframes blink { 0% {color: %[1]} 50% {color: %[2]} } </style> <div class="text_blink"> %(*) </div>
{{blink(red, #FAFAFA) Must read for everybody! }}
BTW, Andriy Lesyuk is there any way to force Textile evaluation within macro body ?