_faq.scss 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. .block-views-blockfaq-block-1{
  2. display: grid;
  3. grid-template-columns: 1fr repeat(4, 2fr) 1fr;
  4. div:first-child{
  5. grid-column: 2 / span 3;
  6. // width: 70%;
  7. // margin: auto;
  8. .node-type-question_reponse{
  9. border-bottom: 1px solid $blue-light;
  10. }
  11. .field--name-title{
  12. display: none;
  13. // font-family: 'Source Code Pro' !important;
  14. // font-weight: 500 !important;
  15. // color: $blue-dark !important;
  16. }
  17. .field--name-field-question{
  18. p{
  19. font-family: 'Source Code Pro' ;
  20. font-weight: 500 ;
  21. color: $blue-dark ;
  22. font-size: 1.5rem;
  23. &:after{
  24. display:inline-flex;
  25. content: url('data:image/svg+xml,<svg width="40" height="20" xmlns="http://www.w3.org/2000/svg" version="1.1"><polyline points="71.9,49 24.3,49 24.3,51 71.9,51 58.1,64.8 59.5,66.2 75.7,50 59.5,33.8 58.1,35.2" transform="scale(0.5) translate(0,-25)" rotate="-45" fill="rgb(0,158,227)" stroke="rgb(0,158,227)" stroke-width="0.7"/></svg>');
  26. justify-self: flex-end;
  27. }
  28. }
  29. }
  30. }
  31. }