Skip to content

Commit

Permalink
updating launcher image
Browse files Browse the repository at this point in the history
  • Loading branch information
paigesrossi committed Jun 20, 2024
1 parent dce26c4 commit bc6fb70
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 16 deletions.
Binary file modified src/main/resources/public/assets/banner-code.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/main/resources/public/assets/css.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ body {

.jumbotron {

background: #000 !important;
background-image: url(/assets/banner-code.png) !important;
background-position: right;
min-height: 500px;
padding-top: 0 !important;
padding-bottom: 0 !important;
padding-left: 30px !important;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,24 +1,20 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<jsp:include page="../../partials/head.jsp"/>

<c:if test="${locals.user == null}">
<!-- IF not signed in -->
<div>
<div class="jumbotron jumbotron-fluid"> <table>
</br>
<tbody>
<tr>
<td>
<h1 class="display-4">Java Launcher</h1>
<p class="Xlead">${launcherTexts.getHomePageText()}</p>
</td>
<td>
<img src="/assets/banner-code.png" />
</td>
</tr>
</tbody>
</table>
</div>
</c:if>


<div class="container" style="margin-top: 40px" id="index-page">
Expand Down
12 changes: 2 additions & 10 deletions src/main/webapp/WEB-INF/templates/views/partials/head.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,5 @@

<p id="download-continue" class="feedback"><a href="/">${launcherTexts.getContinueButton()}</a></p>

<c:choose>
<c:when test="${locals.user == null}">
<div class="container-full-bg">
<section id="content" style="margin:0 90px 0 90px; padding:0 15px 0 15px;">
</c:when>
<c:otherwise>
<div class="container">
<section id="content">
</c:otherwise>
</c:choose>
<div class="container-full-bg">
<section id="content">

0 comments on commit bc6fb70

Please sign in to comment.