_plugins.scss 820 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. .plugin-header {
  2. @include clearfix();
  3. padding: $spacer 0 $spacer/2 0;
  4. margin-bottom: 2rem;
  5. }
  6. .plugin-header-logo {
  7. float: left;
  8. width: 7rem;
  9. img {
  10. width: 7rem;
  11. }
  12. margin-right: $spacer;
  13. }
  14. .plugin-header-info-block {
  15. float: left;
  16. }
  17. .plugin-header-author {
  18. }
  19. .plugin-header-stamps-type {
  20. color: $link-color-disabled;
  21. text-transform: uppercase;
  22. }
  23. .plugin-info-list-item {
  24. img {
  25. width: 16px;
  26. }
  27. white-space: nowrap;
  28. max-width: $page-sidebar-width;
  29. text-overflow: ellipsis;
  30. overflow: hidden;
  31. }
  32. .get-more-plugins-link {
  33. color: $gray-3;
  34. font-size: $font-size-sm;
  35. position: relative;
  36. top: 1.2rem;
  37. &:hover {
  38. color: $link-hover-color;
  39. }
  40. img {
  41. vertical-align: top;
  42. }
  43. }
  44. @include media-breakpoint-down(sm) {
  45. .get-more-plugins-link {
  46. display: none;
  47. }
  48. }