diff --git a/src/Containers/TrustUs/trustUs.css b/src/Containers/TrustUs/trustUs.css index b1fe9ad..4fc73ce 100644 --- a/src/Containers/TrustUs/trustUs.css +++ b/src/Containers/TrustUs/trustUs.css @@ -1,22 +1,37 @@ .TrustContainer{ - margin-top:25px; + margin:50px 0px; display: flex; direction: rtl; align-items: center; width:85%; } -.TrustContainer div{ - margin: 15px; -} + + .TrustContainer .TrustTitle{ - width:20%; - font-size: 18px; + width:18%; + font-size: 16px; font-weight: bold; padding-right: 10px; border-right:5px solid gray; } .TrustContainer .TrustCostumersContainer{ display: flex; - width: 80%; + 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.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%); } \ No newline at end of file diff --git a/src/Containers/TrustUs/trustUs.js b/src/Containers/TrustUs/trustUs.js index d7008fa..7dbc2c6 100644 --- a/src/Containers/TrustUs/trustUs.js +++ b/src/Containers/TrustUs/trustUs.js @@ -13,33 +13,73 @@ import khaneRoshanLogo from '../../assets/images/khaneRoshanLogo.svg'; import ravinoLogo from '../../assets/images/ravino.svg'; -const trustLogos = [ - samanBankLogo, - iranKhodro, - bimehDayLogo, - toseSaderat, - danovinLogo, - bimehSaman, - vaziranDana, - khaneRoshanLogo, - ravinoLogo -]; + const TrustUsContainer = () => { - return( + return (