fredboniface.co.uk/style/new_style.css

46 lines
890 B
CSS
Raw Normal View History

2022-10-18 11:45:25 +01:00
html {
height: 100%;
}
body {
2022-10-19 14:11:11 +01:00
width: 100%;
margin: auto;
2022-10-18 11:45:25 +01:00
}
2022-10-19 14:15:38 +01:00
#header_image_home {
2022-10-19 13:40:09 +01:00
background-color: rgb(29,49,49);
2022-10-19 20:12:07 +01:00
background-image: url("/images/headers/index/index_w750.jpg");
2022-10-19 13:40:09 +01:00
background-repeat: no-repeat;
2022-10-19 20:12:07 +01:00
background-position: top;
background-size: cover;
2022-10-19 14:11:11 +01:00
height: 275px;
min-width: 100%;
max-width: 100%;
margin: auto;
2022-10-19 20:12:07 +01:00
margin-top: 40px;
2022-10-19 14:11:11 +01:00
position: sticky;
2022-10-19 14:22:28 +01:00
top: -170px;
2022-10-18 11:45:25 +01:00
}
2022-10-19 14:15:38 +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;
2022-10-19 20:12:07 +01:00
font-size: large;
2022-10-19 14:22:28 +01:00
width: 100%;
2022-10-18 12:48:35 +01:00
text-align: center;
2022-10-19 14:11:11 +01:00
position: absolute;
2022-10-19 14:22:28 +01:00
bottom: -14px;
2022-10-18 12:48:35 +01:00
color: azure;
2022-10-19 11:51:07 +01:00
}
2022-10-19 14:15:38 +01:00
#content {
2022-10-19 14:11:11 +01:00
margin: auto;
margin-top: 10px;
2022-10-19 20:12:07 +01:00
margin-bottom: 10px;
2022-10-19 14:11:11 +01:00
width: 90%;
2022-10-19 21:23:39 +01:00
}
@media screen and (min-width: 800px) and (min-height: 700px) {
#header_image_home {
margin-top: auto;
}
2022-10-18 11:45:25 +01:00
}