-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselect_art.php
75 lines (57 loc) · 1.72 KB
/
select_art.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
<?php
include("includes/connection.php");
include("account.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>Artworks</title>
<style type="text/css">
.border{
background: url(pictures/Giovanni_Paolo_Pannini_-_Gallery_of_Views_of_Ancient_Rome_-_WGA16979.jpg) no-repeat fixed;
background-size: cover;
box-shadow: 1px 1.732px 2px 0px rgb( 55, 52, 52 );
position: absolute;
width: 100%;
height: 100%;
z-index: 0;
}
.list{
border-left: 1px solid white;
}
.list:last-child{
border-right: none;
}
.list {
float: left;
overflow: auto;
right: 40px;
}
.list .link {
display: block;
color: white;
font-size: 40px;
font-family: "Yu Gothic UI Light";
margin:280px 125px 0px 10px;
text-decoration: none;
}
.link{
margin-left: 100px;
}
.list .link:hover {
background-color:#4f4f4f;
float: left;
overflow: auto;
padding: 5px ;
}
</style>
</head>
<body>
<ul class="border">
<li class="list"><a class="link" href="artwork_post.php?art_category=Painting">Painting</a></li>
<li class="list"><a class="link" href="artwork_post.php?art_category=Sculpture">Sculpture</a></li>
<li class="list"><a class="link" href="artwork_post.php?art_category=Drawing">Drawing</a></li>
<li class="list"><a class="link" href="artwork_post.php?art_category=Photography">Photography</a></li> </ul>
</ul>
</body>
</html>