Bachelorthesis_Code/frontend/src/Footer.css
cami 85e484bf0b
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
Renaming and autoformatting
- renamed the react files to jsx
- autoformat with vscode
2021-07-22 20:18:01 +02:00

113 lines
1.7 KiB
CSS

.footer-container {
background-color: var(--primary);
padding: 4rem 0 2rem 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.footer-subscription {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin-bottom: 24px;
padding: 24px;
color: var(--secondary);
}
.footer-subscription > p {
font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
"Lucida Sans", Arial, sans-serif;
}
.footer-subscription-heading {
margin-bottom: 24px;
font-size: 24px;
}
.footer-subscription-text {
margin-bottom: 24px;
font-size: 20px;
}
.footer-input {
padding: 8px 20px;
border-radius: 2px;
margin-right: 10px;
outline: none;
border: none;
font-size: 18px;
margin-bottom: 16px;
border: 1px solid var(--secondary);
}
.footer-links {
width: 100%;
max-width: 1000px;
display: flex;
justify-content: center;
}
.footer-link-wrapper {
display: flex;
}
.footer-link-items {
display: flex;
flex-direction: column;
align-items: flex-start;
margin: 16px;
text-align: left;
width: 160px;
box-sizing: border-box;
}
.footer-link-items h2 {
margin-bottom: 16px;
}
.footer-link-items > h2 {
color: var(--secondary);
}
.footer-link-items a {
color: var(--secondary);
text-decoration: none;
margin-bottom: 8px;
}
.footer-link-items a:hover {
color: #e9e9e9;
transition: 0.3s ease-out;
}
.footer-email-form h2 {
margin-bottom: 32px;
}
.footer-input::placeholder {
color: #b1b1b1;
}
@media screen and (max-width: 820px) {
.footer-links {
padding-top: 2rem;
}
.footer-input {
width: 100%;
}
.btn {
width: 100%;
}
.footer-link-wrapper {
flex-direction: column;
}
}