write-tweet.scss 974 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. page-write-tweet {
  2. .padding-0 {
  3. padding: 0;
  4. }
  5. .actions {
  6. display: flex;
  7. flex-direction: row;
  8. align-items: center;
  9. justify-content: space-between;
  10. .progress {
  11. display: flex;
  12. align-items: center;
  13. .progress-stats {
  14. margin-left: 5px;
  15. }
  16. .background-stroke,
  17. .progress-stroke {
  18. fill: transparent;
  19. stroke-width: 2;
  20. stroke-dasharray: 50.2654825;
  21. transition: stroke-dashoffset 0.5s;
  22. -webkit-animation-play-state: running;
  23. }
  24. .background-stroke {
  25. stroke: #ddd;
  26. }
  27. .progress-stroke {
  28. stroke: blue;
  29. }
  30. }
  31. .network-switch {
  32. display: flex;
  33. align-items: center;
  34. margin-left: 16px;
  35. }
  36. }
  37. ion-icon.warning {
  38. color: orange;
  39. animation: pulse 1.8s infinite;
  40. }
  41. }
  42. @keyframes pulse {
  43. 0% {
  44. transform: scale(1);
  45. }
  46. 50% {
  47. transform: scale(1.3);
  48. }
  49. 100% {
  50. transform: scale(1);
  51. }
  52. }