Template_test / styles /header.css
itramb's picture
Upload 57 files
50e8e86 verified
header {
padding: 5vh 10vw 0 10vw;
width: 100%;
display: flex;
justify-content: center;
background: linear-gradient(
180deg,
rgb(254, 243, 227) 0%,
rgba(255, 255, 255, 1) 100%
);
}
.header__container {
max-width: 800px;
font-family: 'Inter', sans-serif;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.header__container > h1 {
text-align: center;
}
.header__link-container {
margin-bottom: 20px;
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 8px 15px;
line-height: 1.6;
margin-top: 50px;
width: 80%;
}
a {
font-size: 14px;
color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
text-decoration: none;
}
.linkContainer__authors {
margin-bottom: 2vh;
}
.header__button-container {
margin-top: 20px;
display: flex;
flex-direction: row;
}
.header__button {
display: flex;
align-items: center;
padding: 25px 20px 25px 20px;
font-size: 16px;
width: 10em;
height: 40px;
margin: 2.5px;
border-radius: 30px;
background-color: #2ebead;
border: none;
color: #fff;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0);
}
.header__button:hover {
transform: scale(1.05);
background-color: #29ac9d;
}
.header__button-logo {
position: absolute;
margin: 0;
}
.header__button-text {
font-size: 14px;
margin: 0 auto 0 auto;
text-align: center;
}
.header__participants-container {
margin-bottom: 40px;
}
.header__participants-logo {
width: 170px;
height: 120px;
}
@media (max-width: 600px) {
.header__participants-logo {
width: 150px;
}
.header__button-container {
flex-direction: column;
}
.header__link-container {
width: 90%;
}
.header__button {
width: 18em;
margin-bottom: 10px;
}
}