A unf. social network done poorly.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.2KB

  1. .offline_blink_bg{
  2. vertical-align: super;
  3. font-size: smaller;
  4. color: red;
  5. }
  6. .online_blink_bg{
  7. vertical-align: super;
  8. font-size: smaller;
  9. color: #00FF00;
  10. }
  11. .relative_blink{ /* Wow. such bad. :| */
  12. position: absolute;
  13. top: 5px;
  14. }
  15. .notification_blink{
  16. vertical-align: super;
  17. font-size: smaller;
  18. color: #00FF00;
  19. padding-top: 15px;
  20. }
  21. .online_blink {
  22. -webkit-animation-name: blinker;
  23. -webkit-animation-duration: 1s;
  24. -webkit-animation-timing-function: linear;
  25. -webkit-animation-iteration-count: infinite;
  26. -moz-animation-name: blinker;
  27. -moz-animation-duration: 1s;
  28. -moz-animation-timing-function: linear;
  29. -moz-animation-iteration-count: infinite;
  30. animation-name: blinker;
  31. animation-duration: 1s;
  32. animation-timing-function: linear;
  33. animation-iteration-count: infinite;
  34. }
  35. @-moz-keyframes blinker {
  36. 0% { opacity: 1.0; }
  37. 50% { opacity: 0.0; }
  38. 100% { opacity: 1.0; }
  39. }
  40. @-webkit-keyframes blinker {
  41. 0% { opacity: 1.0; }
  42. 50% { opacity: 0.0; }
  43. 100% { opacity: 1.0; }
  44. }
  45. @keyframes blinker {
  46. 0% { opacity: 1.0; }
  47. 50% { opacity: 0.0; }
  48. 100% { opacity: 1.0; }
  49. }