mirror of
https://gitlab.com/lander-team/site.git
synced 2025-06-16 15:17:14 +00:00
57 lines
773 B
CSS
57 lines
773 B
CSS
/* header {
|
|
background: linear-gradient(
|
|
to top,
|
|
rgb(255, 255, 255),
|
|
rgba(46, 49, 65, 0.8)
|
|
);
|
|
} */
|
|
|
|
a.navbar-brand {
|
|
color: white !important;
|
|
font-weight: thin;
|
|
}
|
|
|
|
header div img {
|
|
/* max-height: 50vh; */
|
|
max-width: 75vw;
|
|
max-height: 75vh;
|
|
margin-bottom: 5vh;
|
|
margin-top: 5vh;
|
|
}
|
|
|
|
@media (max-width: 992px) {
|
|
.p-5 {
|
|
padding: 3rem;
|
|
padding-bottom: 1rem;
|
|
}
|
|
|
|
div.col-lg-6 {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
a {
|
|
word-break: break-all;
|
|
}
|
|
|
|
footer {
|
|
/* width: 100vw; */
|
|
padding: 0;
|
|
margin: 0;
|
|
margin-top: 100vh;
|
|
background-color: black;
|
|
}
|
|
|
|
footer > div {
|
|
display: table-cell;
|
|
margin: 0 auto;
|
|
vertical-align: middle;
|
|
height: 100vh;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
footer > div > p {
|
|
text-align: center;
|
|
width: 100vw;
|
|
}
|