Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion src/main/webapp/Styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,32 @@ and open the template in the editor.
Author : Administrator
*/

header{
text-align: center;
font-family: "Helvetica", sans-serif;
color: white;
background-color: black;
}

footer{
text-align: center;
color: white;
background-color: black;
}
nav {
text-align: left;
border: 2px;
border: 5px;
float: right;
line-height:20px;
background-color:#eeeeee;
height: auto;
width: auto;
}

ul li{
list-style-type: square;
}

footer ul li{
list-style-type: none;
}
1 change: 1 addition & 0 deletions src/main/webapp/UsersPics.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@
<footer>
<ul>
<li class="footer"><a href="/Instagrim">Home</a></li>
<li>&COPY; Andy C</li>
</ul>
</footer>
</body>
Expand Down
3 changes: 2 additions & 1 deletion src/main/webapp/login.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@
</form>

</article>
<footer>
<footer>
<ul>
<li class="footer"><a href="/Instagrim">Home</a></li>
<li>&COPY; Andy C</li>
</ul>
</footer>
</body>
Expand Down
7 changes: 5 additions & 2 deletions src/main/webapp/upload.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@
<link rel="stylesheet" type="text/css" href="Styles.css" />
</head>
<body>
<h1>InstaGrim ! </h1>
<h2>Your world in Black and White</h2>
<header>
<h1>InstaGrim ! </h1>
<h2>Your world in Black and White</h2>
</header>
<nav>
<ul>
<li class="nav"><a href="upload.jsp">Upload</a></li>
Expand All @@ -35,6 +37,7 @@
<footer>
<ul>
<li class="footer"><a href="/Instagrim">Home</a></li>
<li>&COPY; Andy C</li>
</ul>
</footer>
</body>
Expand Down