Skip to content

Commit

Permalink
css changes
Browse files Browse the repository at this point in the history
  • Loading branch information
joshua1234511 committed Sep 25, 2015
1 parent 4cecba7 commit 1ed706c
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Admin/countlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
107
119
10 changes: 9 additions & 1 deletion Display/display.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,15 @@ function show(target , src,x){

}
};

document.onkeyup = function() {
switch (window.event.keyCode) {
case 27:
document.getElementById('display').style.display = 'none';
break;
}
};

}
function hide(target){
document.getElementById(target).style.display = 'none';
Expand All @@ -54,7 +63,6 @@ function hide(target){




</script>
<div id="display" style="z-index:100; display:none;">
<a onclick="show('display',this.name,<?php echo $x ?>);" onmouseover="show('display',this.name,<?php echo $x ?>);" id="prev" name="" style="left: 26%;
Expand Down
2 changes: 1 addition & 1 deletion Login/countlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
56
57
1 change: 1 addition & 0 deletions Login/log.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
Logout on page :http://.movies.sj/Login/logout.php Logout timeStamp: 1443094747 Logout done
Login on page :http://.movies.sj/Login/pass.php Login timeStamp: 1443152448 Login done:Joshua Fernandes
2 changes: 1 addition & 1 deletion Search/search_result.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
Rating: <?php echo $row[rating] ?>&#13;
Year: <?php echo $row[year] ?>"
data-html="true" >
<img onclick="show('display',this.id,<?php echo $x ?>);" id="<?php echo $row["id"] ?>" src="<?php echo $site ?>thumnails/<?php echo $row["id"] ?>.jpg"/></a>
<img onclick="show('display',this.id,<?php echo $x ?>);" id="<?php echo $row["id"] ?>" src="<?php echo $site ?>thumnails/<?php echo $row["id"] ?>.jpg"/></a>
<?php
if($x === '1')
{
Expand Down
8 changes: 7 additions & 1 deletion Subscribe/comment.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
<?php
include ("../Config/config.php");
$data=$_POST['comment'];
$data=test_input($_POST['comment']);
$li='data.txt';
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
$data = $data. "\n";
file_put_contents($li, $data, FILE_APPEND | LOCK_EX);
header('Location: '.$Subscribe);
Expand Down
2 changes: 1 addition & 1 deletion Subscribe/countlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
99
104
3 changes: 3 additions & 0 deletions Subscribe/data.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,6 @@ hi

HI!!!!
Sharavan
@ ^hhello
&lt;script&gt;Help&lt;/script&gt;
LOL!!!
2 changes: 1 addition & 1 deletion countlog.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
406
443
18 changes: 12 additions & 6 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ a[data-title]:hover:after {
background-image: -moz-linear-gradient(top, #eeeeee, #cccccc);
background-image: -ms-linear-gradient(top, #eeeeee, #cccccc);
background-image: -o-linear-gradient(top, #eeeeee, #cccccc);
width: inherit;
}

a#ulink,a#dlink {
Expand Down Expand Up @@ -247,6 +248,8 @@ header {
}
header h1 {
text-align: left;
width: 10%;
font-size:1.5em;

}
header iframe#NewsWindow{
Expand All @@ -256,10 +259,10 @@ header iframe#NewsWindow{
position: fixed;
}
header h1:hover {
-webkit-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-ms-transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-webkit-transform: rotate(-180deg);
-moz-transform: rotate(-180deg);
-ms-transform: rotate(-180deg);
-o-transform: rotate(-180deg);
filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}
header a#logout {
Expand Down Expand Up @@ -308,6 +311,8 @@ header h2 {
font-weight: normal;
padding-bottom:0;
letter-spacing:0;
width: 20%;
height: inherit;
}

section#body {
Expand All @@ -316,7 +321,7 @@ section#body {
}

section#content {
margin-left: 310px;
margin-left: 25%;
padding: 20px;
background-color:transparent;
margin-top: 8%;
Expand All @@ -333,7 +338,7 @@ section#content {
right: auto;
}
aside#sidebar {
width:250px;
width:20%;
position: fixed;
top: 19%;
}
Expand All @@ -347,6 +352,7 @@ nav#mainnav li {
padding:0;
border-bottom: 1px solid #00FFFF;
border-top: 1px solid #00FFFF;
width: inherit;
}
nav#mainnav li.selected-item {
border-bottom:none;
Expand Down
2 changes: 1 addition & 1 deletion data.txt

Large diffs are not rendered by default.

0 comments on commit 1ed706c

Please sign in to comment.