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.

115 lines
1.5 KiB

4 years ago
  1. .column {
  2. flex: 1 0 auto;
  3. }
  4. .pinned-info {
  5. position: relative;
  6. opacity: 0.85;
  7. font-size: 15px;
  8. padding: 10px 20px;
  9. a {
  10. color: #3fadfd;
  11. }
  12. }
  13. .pinned-info__icon {
  14. .fa {
  15. position: absolute;
  16. bottom: 10px;
  17. right: 10px;
  18. cursor: pointer;
  19. }
  20. }
  21. div {
  22. &.status__info {
  23. & > a {
  24. &.status__display-name {
  25. display: inline-block;
  26. }
  27. }
  28. }
  29. }
  30. .gifv {
  31. & > video {
  32. width: 100%;
  33. max-height: 100%;
  34. }
  35. }
  36. .columns-area--mobile {
  37. .getting-started__trends {
  38. display: block;
  39. .trends__item {
  40. display: flex;
  41. }
  42. }
  43. }
  44. .status__quote__wrapper {
  45. margin-top:16px;
  46. border-left: 5px solid #dbdbdb80;
  47. background: #dbdbdb40;
  48. .status {
  49. padding-left:40px;
  50. .status__action-bar {
  51. display: none;
  52. }
  53. .status__avatar {
  54. transform: scale(0.5);
  55. transform-origin: 0% 0%;
  56. }
  57. }
  58. }
  59. .status__tree__quote__wrapper {
  60. margin-top:16px;
  61. padding: 10px 5px;
  62. background: #dbdbdb40;
  63. }
  64. @keyframes like {
  65. 0% {
  66. transform: scale(1);
  67. }
  68. 25% {
  69. transform: scale(1.75);
  70. }
  71. 100% {
  72. transform: scale(1);
  73. }
  74. }
  75. @keyframes unlike {
  76. 0% {
  77. transform: rotateY(0deg);
  78. }
  79. 50% {
  80. transform: rotateY(240deg);
  81. }
  82. 80% {
  83. transform: rotateY(140deg);
  84. }
  85. 100% {
  86. transform: rotateY(180deg);
  87. }
  88. }
  89. .no-reduce-motion .icon-button.star-icon {
  90. &.activate {
  91. & > .fa-heart {
  92. animation: like 1s linear;
  93. }
  94. }
  95. }
  96. .no-reduce-motion .icon-button.star-icon {
  97. &.deactivate {
  98. & > .fa-heart {
  99. animation: unlike 1s linear;
  100. }
  101. }
  102. }