ailur-website/static/css/donate.css

38 lines
477 B
CSS
Raw Normal View History

2024-10-30 20:43:38 +00:00
@import "common.css";
body {
text-align: center;
}
.center {
display: flex;
justify-content: center;
}
.blockContainer .center p {
max-width: 80vw;
}
.blockContainer p {
font-size: 18px;
}
.blockContainer h1 {
font-size: 50px;
margin: 0;
2024-11-26 19:42:03 +00:00
}
.buyButton {
width: 100px;
margin: 0 auto;
}
.ieOnly {
display: none;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.ieOnly {
display: block;
}
2024-10-30 20:43:38 +00:00
}