-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilm.php
97 lines (87 loc) · 1.89 KB
/
film.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!--Sax-->
<?php include "nav.php"; ?>
<div class="center">
<!--<img src="river.JPG" style="width:100%; height:100%">-->
<div class="centertitle">Our Stuff</div>
<div class="left">
<div class="item">
<img src="DSC_0536.jpg">
<div class="subtitle">
<h1>Title of Movie</h1>
Holy geez this movie is gr8
</div>
</div>
</div>
<div class="right">
<div class="item">
<img src="DSC_0536.jpg">
<div class="subtitle">
<h1>Title of Movie</h1>
Holy geez this movie is gr8
</div>
</div>
</div>
</div>
<style>
.subhead{
text-align: center;
padding-top: 3vh;
font-size:2em;
}
.bottom{
width:100vw;
height:30vh;
background-color: black;
}
.centertitle{
text-align: center;
position: absolute;
color:black;
top:0;
right:0;
left:0;
font-size:5vh;
font-family: cursive;
}
.center{
width:100vw;
height:200vh;
position: relative;
margin: 0;
background-color: #BD9D00;
padding-top: 10vh;
}
.item{
position: relative;
}
.center img{
width:20vw;
position: absolute;
}
.subtitle{
float:right;
width:25vw;
padding-top: 2vh;
}
.left{
width:48vw;
height:200vh;
float:left;
position: relative;
display: inline-block;
padding: 10;
}
.right{
width:48vw;
height:200vh;
position: relative;
float:right;
display: inline-block;
padding: 10;
}
*{
margin: 0;
color:white;
font-family: Helvetica;
}
</style>