_documents.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .organization-info {
  2. &__documents {
  3. background: #ebebeb;
  4. min-width: 100%;
  5. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  6. &-title {
  7. font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
  8. padding: 9px 0;
  9. position: relative;
  10. font-size: 20px;
  11. font-weight: 600;
  12. color: #3b434d;
  13. }
  14. td {
  15. border: none;
  16. padding: 5px;
  17. vertical-align: top;
  18. font-family: $fontopensans;
  19. font-size: 13px;
  20. line-height: 15px;
  21. color: #3b434d;
  22. @media screen and (max-width: 768px) {
  23. display: block;
  24. }
  25. }
  26. tr td:first-child {
  27. padding-right: 19px;
  28. }
  29. tr:first-child td {
  30. padding-top: 10px;
  31. }
  32. tr:last-child td {
  33. padding-bottom: 7px;
  34. }
  35. a {
  36. display: block;
  37. color: #004d7b;
  38. text-decoration: none;
  39. position: relative;
  40. padding-left: 20px;
  41. }
  42. .table_icon:before {
  43. content: '';
  44. display: inline-block;
  45. width: 13px;
  46. height: 15px;
  47. margin: 0 5px 0 0;
  48. position: absolute;
  49. top: 0;
  50. left: 0;
  51. background: url(../img/icon_table_link.png);
  52. }
  53. }
  54. }