This repository has been archived by the owner on Sep 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Task-Url: #27
- Loading branch information
Xelit3
committed
Dec 26, 2016
1 parent
13c39f5
commit 3460dad
Showing
9 changed files
with
59 additions
and
70 deletions.
There are no files selected for viewing
20 changes: 19 additions & 1 deletion
20
RocketStatsWeb/WebContent/resources/css/RocketStatsPageStylesheet.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,36 @@ | ||
@CHARSET "ISO-8859-1"; | ||
|
||
html, body { | ||
height: 100%; | ||
} | ||
|
||
header{ | ||
background: #2c3e50; | ||
} | ||
|
||
footer{ | ||
background: #16a085; | ||
color: #fff; | ||
color: #fff; | ||
height: 3em; | ||
} | ||
|
||
h1{ | ||
color: #fff; | ||
} | ||
|
||
span{ | ||
visibility: hidden; | ||
} | ||
|
||
.main{ | ||
background: #f2f2f2; | ||
} | ||
|
||
.rsTrPendingGame:hover{ | ||
border-radius: 10px; | ||
border: 2px double #4C9900; | ||
} | ||
|
||
input[type="number"]{ | ||
width: 5em; | ||
} |
3 changes: 3 additions & 0 deletions
3
RocketStatsWeb/WebContent/resources/js/controller/HomeControllerScript.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$(document).ready(function (){ | ||
|
||
}); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<%@include file="base/BaseHeaderView.jsp"%> | ||
|
||
<body> | ||
<header> | ||
<div class="container-fluid"> | ||
<h1>Home</h1> | ||
</div> | ||
|
||
<%@include file="base/MenuHeader.jsp"%> | ||
</header> | ||
|
||
<p> | ||
Inicio de la web de RocketStats | ||
${userSession.getUserName()} | ||
</p> | ||
|
||
<%@include file="base/BaseFooterView.jsp"%> | ||
<script type="text/javascript" src="resources/js/controller/HomeControllerScript.js"></script> | ||
</body> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<ul class="nav nav-tabs"> | ||
<li class="active"><a href="#">Home</a></li> | ||
<li><a href="#">Users</a></li> | ||
<li><a href="#">Tournaments</a></li> | ||
<li><a href="#">Steam</a></li> | ||
</ul> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters