server-landing-pages/src/styles.css
2024-03-24 16:54:59 +01:00

44 lines
630 B
CSS

body,
html {
min-width: 100%;
min-height: 100%;
}
body {
background-color: #000000;
color: rgba(255, 255, 255, 1);
max-width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
height: 100%;
margin: auto;
}
/* For mobile phones: */
img {
max-height: 55vh;
max-width: 40vh;
}
@media only screen and (min-width: 1000px) {
img {
max-height: 80%;
max-width: 50%;
}
}
a {
color: rgba(200, 200, 200, 0.8);
}
a:hover {
color: rgba(200, 200, 200, 1);
}