38 lines
477 B
CSS
38 lines
477 B
CSS
@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;
|
|
}
|
|
|
|
.buyButton {
|
|
width: 100px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.ieOnly {
|
|
display: none;
|
|
}
|
|
|
|
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
|
|
.ieOnly {
|
|
display: block;
|
|
}
|
|
} |