fredboniface.co.uk/style/new_style.css

30 lines
559 B
CSS
Raw Normal View History

2022-10-18 11:45:25 +01:00
html {
height: 100%;
}
body {
}
.header-image-home {
2022-10-18 12:48:35 +01:00
background-image: url(https://via.placeholder.com/375x335webp);
2022-10-19 11:51:07 +01:00
min-height: 40%;
max-height: 45%;
2022-10-18 11:45:25 +01:00
width: 100%;
2022-10-19 11:51:07 +01:00
position: fixed; /* Try setting this to relative and .page-title to absolute */
2022-10-18 12:48:35 +01:00
top: 40px;
left: 0;
2022-10-18 11:45:25 +01:00
}
2022-10-18 12:48:35 +01:00
.page-title { /* This needs to be bottom center of header-image-home/header-image */
2022-10-18 11:45:25 +01:00
font-family: sans-serif;
font-size: 4vw;
2022-10-18 12:48:35 +01:00
text-align: center;
position: absloute;
2022-10-18 11:45:25 +01:00
box-shadow: 3px;
2022-10-18 12:48:35 +01:00
color: azure;
2022-10-19 11:51:07 +01:00
}
.content {
margin-top: 95%;
2022-10-18 11:45:25 +01:00
}