選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

60 行
1.1 KiB

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .participation-teaser {
  4. position: relative;
  5. display: flex;
  6. flex-direction: column;
  7. background-color: white;
  8. overflow: hidden;
  9. width: 100%;
  10. border-radius: var(--border-radius-lg);
  11. padding: 24px;
  12. transition: 0.25s ease;
  13. text-decoration: none;
  14. font-size: var(--font-size-small);
  15. @media(max-width: 999px) {
  16. padding: 14px;
  17. }
  18. @media(max-width: 767px) {
  19. font-size: 16px;
  20. min-height: 84px;
  21. border-radius: 8px;
  22. }
  23. &::before {
  24. content: "";
  25. position: relative;
  26. display: block;
  27. height: 80px;
  28. background-color: var(--theme-color-primary);
  29. margin: -24px -24px 10px;
  30. background-image: url('./topic-meinung.svg');
  31. background-repeat: no-repeat;
  32. background-position: center 65%;
  33. background-size: 60px;
  34. @media(max-width: 567px) {
  35. font-size: 50px;
  36. margin-top: -14px;
  37. }
  38. }
  39. .like-h4, p, .buttons {
  40. margin: 0.5em 0;
  41. }
  42. .buttons {
  43. display: flex;
  44. justify-content: space-between;
  45. padding-top: 0.4em;
  46. .btn {
  47. &:last-child {
  48. margin-left: auto;
  49. }
  50. }
  51. }
  52. }