Lungo.widgets.beta.less 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace LUNGO.Widgets
  5. * @class Beta
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. /* @group .counter (BETA) */
  10. .counter{
  11. padding: 1px 5px 0;
  12. border: 1px solid rgba(0,0,0,0.15);
  13. text-shadow: rgba(0,0,0,0.25) 0 -1px 0;
  14. font-size: 0.6em;
  15. font-weight: bold;
  16. margin: 0 auto;
  17. }
  18. /* @end */
  19. /* @group <article>.info */
  20. article.info details{
  21. margin: 16px;
  22. height: 80%;
  23. border: 4px dotted #ccc;
  24. color: #a9a9a9;
  25. display: block;
  26. text-align: center;
  27. font-size: 1.25em;
  28. padding: 16px;
  29. }
  30. article.info details > *{
  31. display: block;
  32. color: #a8a8a8;
  33. font-weight: normal;
  34. font-style: normal;
  35. }
  36. article.info details em{
  37. opacity: 0.75;
  38. font-size: 0.85em;
  39. }
  40. article.info details span {
  41. font-size: 192px;
  42. //-webkit-animation: article-info 1.5s;
  43. -webkit-animation-iteration-count: infinite;}
  44. @-webkit-keyframes article-info {
  45. 0% {opacity: 1; -webkit-transform:rotate(0deg);}
  46. 50% {opacity: 0.1; -webkit-transform:rotate(360deg);}
  47. 100% {opacity: 1; -webkit-transform:rotate(720deg);}
  48. }
  49. /* @end */