Compare commits

..

1 Commits

Author SHA1 Message Date
steven 0572f81aeb fix(body): background height 2021-03-16 11:52:14 -04:00
2 changed files with 1 additions and 13 deletions

View File

@ -1,22 +1,12 @@
/* background */
html, body, #background {
margin: 0;
height: 100%;
}
#background {
background: url(../img/shirakawa.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-color: #704214;
position: relative;
height: 100%;
overflow: scroll;
}
#content {
position: absolute;
left: 0;
top: 0;
width: 100%;
color: #fff;
text-shadow: 1px 1px #000;

View File

@ -23,7 +23,6 @@
</head>
<body>
<div id="background">
<div id="content">
<header>
<?php echo '<h1>' . $machine->name . '</h1>
@ -56,7 +55,6 @@
</p>';?>
</footer>
</div>
</div>
</body>
</html>