highway/app/assets/stylesheets/landing.css
2025-05-07 22:04:48 -04:00

67 lines
1.2 KiB
CSS

html, body {
margin: 0;
padding: 0;
height: 100%;
background-image: url('/assets/landing/bg.png');
background-repeat: repeat;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
html {
background-color: #272239;
color: white;
}
/* Ensure the image container takes full width */
img {
display: block;
width: 100%;
height: auto;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
.pixelated-image {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
}
.landing-container {
position: relative;
text-align: center;
}
.landing-text {
background-color: #2C2B2B;
color: white;
border: 10px solid #FFE6FF;
border-radius: 17px;
padding: 32px 48px;
text-align: center;
margin: 20px auto;
display: inline-block;
}
.landing-text-container {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.landing-text.title {
font-size: 120px;
transform: rotate(-2deg)
}
.landing-text.subtitle {
padding: 24px 32px;
}