forked from Cutlery/immich
* Add yarn.lock to .gitignore * Tweak announcementBar message * Add demo link to docs homepage * chore(docs): logo-meaning page cleanup * chore(docs): support page cleanup * chore(docs): tech-stack page cleanup * chore(docs): requirements page cleanup * Update main README warning to match docs site * Add clearer documentation link to main README * chore(docs): one-step-install page cleanup * chore(docs): Security: remove example JWT_SECRET value * chore(docs): recommended-install page cleanup * chore(docs): portainer-install page cleanup * chore(docs): unraid-install page cleanup
66 lines
1.0 KiB
CSS
66 lines
1.0 KiB
CSS
/**
|
|
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
* and scoped locally.
|
|
*/
|
|
|
|
.heroBanner {
|
|
padding: 4rem 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
background: #606c88;
|
|
background: -webkit-linear-gradient(to top, #4e5362, #606c88);
|
|
background: linear-gradient(to top, #4e5362, #606c88);
|
|
color: whitesmoke;
|
|
}
|
|
|
|
@media screen and (max-width: 996px) {
|
|
.heroBanner {
|
|
padding: 2rem;
|
|
}
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.buttonsRow {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
margin-bottom: 4rem;
|
|
gap: 1rem;
|
|
}
|
|
|
|
.installButton {
|
|
background-color: #adcbfa;
|
|
color: #000000;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.installButton:hover {
|
|
color: #000000;
|
|
}
|
|
|
|
.introButton {
|
|
background-color: #e6ebf5;
|
|
color: #000000;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.introButton:hover {
|
|
color: #000000;
|
|
}
|
|
|
|
.demoButton {
|
|
background-color: aquamarine;
|
|
color: #000000;
|
|
border-radius: 50px;
|
|
}
|
|
|
|
.demoButton:hover {
|
|
color: #000000;
|
|
} |