copyright.scss 749 B

1234567891011121314151617181920212223242526272829303132
  1. .copyright {
  2. display: -webkit-flex;
  3. display: -ms-flex;
  4. display: flex;
  5. flex-direction: column;
  6. justify-content: flex-start;
  7. align-items: flex-start;
  8. align-content: flex-start;
  9. margin-right: 22px;
  10. &__link {
  11. position: relative;
  12. line-height: 25px;
  13. color: #9e9e9e;
  14. text-decoration: underline;
  15. &:hover {
  16. text-decoration: none;
  17. }
  18. &::after {
  19. content: '';
  20. position: absolute;
  21. display: block;
  22. right: -30px;
  23. top: 0;
  24. width: 25px;
  25. height: 25px;
  26. line-height: 25px;
  27. background: url("../img/16.png") center center / cover no-repeat;
  28. }
  29. }
  30. }