docs.cwtch.im/src/pages/index.module.css

42 lines
725 B
CSS

/**
* CSS files with the .module.css suffix will be treated as CSS modules
* and scoped locally.
*/
.heroBanner {
padding: 4rem 0;
text-align: center;
position: relative;
overflow: hidden;
color: #FDF3FC;
height: 670px;
background: url(/img/handbook-banner_small.jpg) no-repeat top center;
}
.heroBanner p {
color: #FDF3FC;
font-weight: bold;
text-shadow:
-1px -1px 0 #281831,
1px -1px 0 #281831,
-1px 1px 0 #281831,
1px 1px 0 #281831;
}
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
}
.button {
background-color: #8E64A5;
color: #FDF3FC;
}