Skip to content

Commit

Permalink
Merge branch 'rawan-events'
Browse files Browse the repository at this point in the history
  • Loading branch information
Rawan-Abdellatif committed Jul 29, 2024
2 parents 80b2d49 + 6ea8d1f commit b7adc94
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 26 deletions.
28 changes: 26 additions & 2 deletions src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,17 @@ max-width:100% ;
height:50px;
flex-wrap: wrap;
font-weight:700;
.read-more-link:hover {
color:#bb5a7d;

}
.read-more-link {
color: #bb5a7d;
text-decoration: none;
}

.read-more-link:hover {
color: #bb5a7d;
}

.text{
/* border:2px solid blue; */
max-height:150px;
Expand Down Expand Up @@ -330,3 +337,20 @@ flex-wrap: wrap;
margin-left: calc(37% - 150px);
max-width:1500px;
}}

.institutionsa-image{
height:100px;
width: 185px;
border-radius:10px;
padding:10px 33px;
margin:25px ;

}
html[data-theme="dark"] .institutionsa-image{
background-color: var(--ifm-color-gray-500);
}
.row.margin-bottom--lg{
border-radius:8px;
padding:17px;

}
29 changes: 5 additions & 24 deletions src/pages/geminai.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,30 +16,16 @@ export function Institutionsa({ list }) {
<section >
<div >
{list.map((category) => (
<div key={category.title} className="row margin-bottom--lg" style={{
borderRadius:'8px',
padding:'17px',

}}

>
<div key={category.title} className="row margin-bottom--lg" >

<h2 className="col col--2 " >{category.title}</h2>
{category.members.map((props) => (
<a href={props.url} target="_blank" rel="noopener noreferrer">
<img
className="institutionsa-image"
<img className="institutionsa-image"

src={props.log}
alt={props.name}
style={{

height:'100px',
width: '185px',
borderRadius:'10px',
padding:'10px 45px',
margin:'25px' ,
backgroundColor:' var(--ifm-color-gray-500)'
}}

/>
</a>

Expand Down Expand Up @@ -84,12 +70,7 @@ const GEMinAIProgramPage = () => {

</PageHeader>

<main style={{
// border: '2px solid red',
// maxWidth: '950px',
// marginLeft:'300px',
// marginTop:'15px'
}} className='GEMinAIContainer'>
<main className='GEMinAIContainer'>
<div >
<img src={IMG_3070} alt="IMG_3070" width="195 " />
<img src={GEMinAI_Launch_Event176} alt="GEMinAI_Launch_Event176" width="220 "/>
Expand Down

0 comments on commit b7adc94

Please sign in to comment.