parent
7e746ded59
commit
cde382de8a
2 changed files with 79 additions and 24 deletions
@ -1,22 +1,37 @@ |
|||||||
.TrustContainer{ |
.TrustContainer{ |
||||||
margin-top:25px; |
margin:50px 0px; |
||||||
display: flex; |
display: flex; |
||||||
direction: rtl; |
direction: rtl; |
||||||
align-items: center; |
align-items: center; |
||||||
width:85%; |
width:85%; |
||||||
} |
} |
||||||
.TrustContainer div{ |
|
||||||
margin: 15px; |
|
||||||
} |
|
||||||
.TrustContainer .TrustTitle{ |
.TrustContainer .TrustTitle{ |
||||||
width:20%; |
width:18%; |
||||||
font-size: 18px; |
font-size: 16px; |
||||||
font-weight: bold; |
font-weight: bold; |
||||||
padding-right: 10px; |
padding-right: 10px; |
||||||
border-right:5px solid gray; |
border-right:5px solid gray; |
||||||
} |
} |
||||||
.TrustContainer .TrustCostumersContainer{ |
.TrustContainer .TrustCostumersContainer{ |
||||||
display: flex; |
display: flex; |
||||||
width: 80%; |
width: 82%; |
||||||
justify-content: space-between; |
justify-content: space-between; |
||||||
|
align-items: center; |
||||||
|
|
||||||
|
} |
||||||
|
.TrustContainer .TrustCostumersContainer img{ |
||||||
|
filter: gray; /* IE6-9 */ |
||||||
|
-webkit-filter: grayscale(100%); |
||||||
|
cursor: pointer; |
||||||
|
transition: all 0.2s; |
||||||
|
} |
||||||
|
.TrustContainer .TrustCostumersContainer img:hover{ |
||||||
|
filter: none; /* IE6-9 */ |
||||||
|
-webkit-filter: grayscale(0%); |
||||||
|
} |
||||||
|
.TrustContainer .TrustCostumersContainer img.active{ |
||||||
|
filter: none; /* IE6-9 */ |
||||||
|
-webkit-filter: grayscale(0%); |
||||||
} |
} |
Loading…
Reference in new issue