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.

50 lines
780 B

4 years ago
  1. .footer {
  2. padding: 40px 0;
  3. flex-grow: 0;
  4. opacity: .5;
  5. &__inner {
  6. display: flex;
  7. align-items: center;
  8. justify-content: space-between;
  9. margin: 0;
  10. width: 760px;
  11. max-width: 100%;
  12. @media (--tablet) {
  13. flex-direction: column;
  14. }
  15. }
  16. a {
  17. color: inherit;
  18. }
  19. .copyright {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. font-size: 1rem;
  24. color: var(--light-color-secondary);
  25. &--user {
  26. margin: auto;
  27. text-align: center;
  28. }
  29. & > *:first-child:not(:only-child) {
  30. margin-right: 10px;
  31. @media (--tablet) {
  32. border: none;
  33. padding: 0;
  34. margin: 0;
  35. }
  36. }
  37. @media (--tablet) {
  38. flex-direction: column;
  39. margin-top: 10px;
  40. }
  41. }
  42. }