Skip to content

Commit

Permalink
elxir funding
Browse files Browse the repository at this point in the history
  • Loading branch information
Gemma committed Mar 6, 2024
1 parent 87a7c74 commit bfe3e5c
Show file tree
Hide file tree
Showing 7 changed files with 76 additions and 24 deletions.
Binary file added frontend/public/elixirLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added frontend/public/horizonEuropeLogo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion frontend/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>IMPaCT Beacon network demo</title>
<title>ELIXIR Beacon network demo</title>
</head>

<body class="dx-viewport">
Expand Down
Binary file removed frontend/public/laMaratoLogo.png
Binary file not shown.
55 changes: 38 additions & 17 deletions frontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -603,13 +603,13 @@ html {
align-items: center;
}

.laMaratoLogo {
height: 81px;
.elixirLogo {
height: 91px;
-webkit-filter: grayscale(20%);
filter: grayscale(60%);
filter: grayscale(100%);
}

.laMaratoLogo:hover {
.elixirLogo:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}
Expand All @@ -629,6 +629,22 @@ html {
filter: grayscale(0%);
}

.horizonEuropeLogo{
height: 35px;
margin-right: 16px;
margin-left: 4px;
margin-top: 3px;
-webkit-filter: grayscale(20%);
filter: grayscale(100%);
-webkit-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}

.horizonEuropeLogo:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}

.comming_message {
margin: 80px;
font-size: 18px;
Expand Down Expand Up @@ -1196,13 +1212,15 @@ h5 {
padding-bottom: 1px;
}

.laMaratoLogo {
height: 70px;
margin-bottom: 5px;
.elixirLogo {
height: 60px;
-webkit-filter: grayscale(20%);
filter: grayscale(100%);
}
.laMaratoLogo:hover {
-webkit-filter: grayscale(50%);
filter: grayscale(50%);

.elixirLogo:hover {
-webkit-filter: grayscale(0%);
filter: grayscale(0%);
}

.version {
Expand Down Expand Up @@ -1231,6 +1249,16 @@ h5 {
transition: 0.2s ease-in-out;
}

.horizonEuropeLogo{
height: 31px;
margin-right: 16px;
margin-left: 4px;
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
-webkit-transition: 0.2s ease-in-out;
transition: 0.2s ease-in-out;
}

.inputVariants {
height: 24px;
border: 1.5px solid #dfdfdf;
Expand Down Expand Up @@ -1413,13 +1441,6 @@ h5 {
margin-left: -8px;
}

.elixirLogo {
height: 70px;
margin-top: 18px;
margin-bottom: 37px;
margin-right: 21px;
}

.searchButton {
height: 30px;
cursor: pointer;
Expand Down
20 changes: 19 additions & 1 deletion frontend/src/components/Footer/Footer.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,24 @@ function Footer (props) {
Beacon validator
</NavLink>
</li>
<li className='social-icon__item'>
<a
className='social-icon__link'
href='https://github.com/elixir-europe/beacon-network-ui/'
target='_blank'
rel='noreferrer'
>
<ion-icon name='logo-github'></ion-icon>
</a>
<a
className='menu__link'
href='https://github.com/elixir-europe/beacon-network-ui/'
target='_blank'
rel='noreferrer'
>
GitHub UI
</a>
</li>
{/* <li className='social-icon__item'>
<a
className='social-icon__link'
Expand Down Expand Up @@ -149,7 +167,7 @@ function Footer (props) {
to='/sign-in-options'
className='social-icon__link'
>
<ion-icon name='log-out-outline' ></ion-icon>
<ion-icon name='log-out-outline'></ion-icon>
</NavLink>
<NavLink
exact
Expand Down
23 changes: 18 additions & 5 deletions frontend/src/components/Layout/Layout.js
Original file line number Diff line number Diff line change
Expand Up @@ -538,19 +538,32 @@ function Layout (props) {
<div className='logosVersionContainer'>
<div className='logos'>
<a
href='https://www.ccma.cat/tv3/marato/'
href='https://elixir-europe.org/'
className='logoInstitution'
target='_blank'
rel='noreferrer'
title='This project has been funded by TV3 La Marató Foundation under the identification code 202040-31'
title='The project "Beacon Infrastructure (2021-23)" has been funded by ELIXIR Europe'
>
<img
className='laMaratoLogo'
src='../laMaratoLogo.png'
alt='laMaratoLogo'
className='elixirLogo'
src='./white-orange-logo.png'
alt='elixirLogo'
></img>
</a>

<a
href='https://research-and-innovation.ec.europa.eu/funding/funding-opportunities/funding-programmes-and-open-calls/horizon-europe_en'
className='logoInstitution'
target='_blank'
rel='noreferrer'
title='Funded by the European Union'
>
<img
className='horizonEuropeLogo'
src='../horizonEuropeLogo.png'
alt='horizonEuropeLogo'
></img>
</a>
<a
href='https://fundacionlacaixa.org/es/'
className='logoInstitution'
Expand Down

0 comments on commit bfe3e5c

Please sign in to comment.