You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
813 B
37 lines
813 B
.TrustContainer{ |
|
margin:50px 0px; |
|
display: flex; |
|
direction: rtl; |
|
align-items: center; |
|
width:85%; |
|
} |
|
|
|
|
|
.TrustContainer .TrustTitle{ |
|
width:18%; |
|
font-size: 16px; |
|
font-weight: bold; |
|
padding-right: 10px; |
|
border-right:5px solid gray; |
|
} |
|
.TrustContainer .TrustCostumersContainer{ |
|
display: flex; |
|
width: 82%; |
|
justify-content: space-between; |
|
align-items: center; |
|
|
|
} |
|
.TrustContainer .TrustCostumersContainer img{ |
|
filter: gray; /* IE6-9 */ |
|
-webkit-filter: grayscale(100%); |
|
cursor: pointer; |
|
transition: all 0.4s; |
|
} |
|
.TrustContainer .TrustCostumersContainer img:hover{ |
|
filter: none; /* IE6-9 */ |
|
-webkit-filter: grayscale(0%); |
|
} |
|
.TrustContainer .TrustCostumersContainer img.active{ |
|
filter: none; /* IE6-9 */ |
|
-webkit-filter: grayscale(0%); |
|
} |