An old college ICT project (for the module "Client-side Customisation of Web Pages") in which I produced a small interactive murder-mystery adventure game using HTML, CSS and JavaScript.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
480 B

#Container
{
position: absolute;
left: 0px;
top: 0px;
width: 100%;
height: 100%;
background-color: black;
}
#ContentPane
{
position: absolute;
bottom: 0px;
top: 0px;
left: 0px;
right: 0px;
margin-top: 20px;
margin-bottom: 20px;
margin-left: 200px;
margin-right: 200px;
width: auto;
min-width: 400px;
height: auto;
overflow-y: auto;
background-image: url("../Images/EndBGRed.png");
background-size: 100% 99px;
}