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

42 lines
725 B
CSS
Raw Permalink Normal View History

2022-05-11 20:53:53 +00:00
/**
* 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;
2022-06-17 20:07:54 +00:00
color: #FDF3FC;
2022-06-17 20:10:36 +00:00
height: 670px;
2022-06-17 20:07:54 +00:00
background: url(/img/handbook-banner_small.jpg) no-repeat top center;
2022-05-11 20:53:53 +00:00
}
2022-06-17 20:17:04 +00:00
.heroBanner p {
2022-06-17 20:19:02 +00:00
color: #FDF3FC;
font-weight: bold;
2022-06-17 20:15:34 +00:00
text-shadow:
2022-06-17 20:19:02 +00:00
-1px -1px 0 #281831,
1px -1px 0 #281831,
-1px 1px 0 #281831,
1px 1px 0 #281831;
2022-06-17 20:15:34 +00:00
}
2022-05-11 20:53:53 +00:00
@media screen and (max-width: 996px) {
.heroBanner {
padding: 2rem;
}
}
.buttons {
display: flex;
align-items: center;
justify-content: center;
2022-06-17 20:27:41 +00:00
}
.button {
2022-06-17 20:25:16 +00:00
background-color: #8E64A5;
color: #FDF3FC;
2022-05-11 20:53:53 +00:00
}