Compare commits
1 Commits
0572f81aeb
...
3d49222fd3
| Author | SHA1 | Date |
|---|---|---|
|
|
3d49222fd3 |
|
|
@ -1,12 +1,22 @@
|
||||||
/* background */
|
/* background */
|
||||||
|
html, body, #background {
|
||||||
|
margin: 0;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
#background {
|
#background {
|
||||||
background: url(../img/shirakawa.jpg);
|
background: url(../img/shirakawa.jpg);
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
background-position: center;
|
background-position: center;
|
||||||
background-color: #704214;
|
background-color: #704214;
|
||||||
height: 100%;
|
position: relative;
|
||||||
overflow: scroll;
|
overflow: scroll;
|
||||||
|
}
|
||||||
|
#content {
|
||||||
|
position: absolute;
|
||||||
|
left: 0;
|
||||||
|
top: 0;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
color: #fff;
|
color: #fff;
|
||||||
text-shadow: 1px 1px #000;
|
text-shadow: 1px 1px #000;
|
||||||
|
|
|
||||||
|
|
@ -23,6 +23,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="background">
|
<div id="background">
|
||||||
|
<div id="content">
|
||||||
|
|
||||||
<header>
|
<header>
|
||||||
<?php echo '<h1>' . $machine->name . '</h1>
|
<?php echo '<h1>' . $machine->name . '</h1>
|
||||||
|
|
@ -55,6 +56,7 @@
|
||||||
</p>';?>
|
</p>';?>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue