copyright.scss 725 B

12345678910111213141516171819202122232425262728293031
  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. &__link {
  10. position: relative;
  11. line-height: 25px;
  12. color: #9e9e9e;
  13. text-decoration: underline;
  14. &:hover {
  15. text-decoration: none;
  16. }
  17. &::after {
  18. content: '';
  19. position: absolute;
  20. display: block;
  21. right: -30px;
  22. top: 0;
  23. width: 25px;
  24. height: 25px;
  25. line-height: 25px;
  26. background: url("../img/16.png") center center / cover no-repeat;
  27. }
  28. }
  29. }