| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- .organization-info {
- &__documents {
- background: #ebebeb;
- min-width: 100%;
- font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
- &-title {
- font-family: "cuprum", Impact, "Charcoal CY", sans-serif;
- padding: 9px 0;
- position: relative;
- font-size: 20px;
- font-weight: 600;
- color: #3b434d;
- }
- td {
- border: none;
- padding: 5px;
- vertical-align: top;
- font-family: $fontopensans;
- font-size: 13px;
- line-height: 15px;
- color: #3b434d;
- @media screen and (max-width: 768px) {
- display: block;
- }
- }
- tr td:first-child {
- padding-right: 19px;
- }
- tr:first-child td {
- padding-top: 10px;
- }
- tr:last-child td {
- padding-bottom: 7px;
- }
- a {
- display: block;
- color: #004d7b;
- text-decoration: none;
- position: relative;
- padding-left: 20px;
- }
- .table_icon:before {
- content: '';
- display: inline-block;
- width: 13px;
- height: 15px;
- margin: 0 5px 0 0;
- position: absolute;
- top: 0;
- left: 0;
- background: url(../img/icon_table_link.png);
- }
- }
- }
|