Same code but different font & color etc ?
I currently have the below code on my ebay page which looks after the text assigned blinking.
Code:
.blinking {
-moz-transition:all 1s ease-in-out;
-webkit-transition:all 1s ease-in-out;
-o-transition:all 1s ease-in-out;
-ms-transition:all 1s ease-in-out;
transition:all 1s ease-in-out;
/* order: name, direction, duration, iteration-count, timing-function */
-moz-animation:blink normal 2s infinite ease-in-out; /* Firefox */
-webkit-animation:blink normal 2s infinite ease-in-out; /* Webkit */
-ms-animation:blink normal 2s infinite ease-in-out; /* IE */
animation:blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
color: #000099;
font-weight: bold;
font-size: 14px;
text-align: center;
}
I now need to highlite another part of my text BUT with a different font color & size so do i have to copy & paste all the above & make the changes or can an edit bee added to the above code.
I was thing along the lines of different text that needs this doing would then make the code on the page longer & longer every time.