Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to the Mtn Dew Edition #14

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
Empty file modified mvnw
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# | _|(_-<| || |\ V /| || || |(_-<
# |_| /__/ \_,_| \_/ |_| \_,_|/__/
#
# Mount Fsuvius - The Sierra Mist Edition
# Mount Fsuvius - The Mtn Dew Edition
# Application version ${application.version}.
# Spring Boot version ${spring-boot.version}.
# https://github.com/COSI-Lab/fsuvius
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/static/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

<div class="content_container">
<img class="logo" src="media/logo.png" alt="Mount Fsuvius">
<p><i>The Sierra Mist Edition</i></p>
<p>Mtn Dew Edition: <i>As Refreshing As The Rocky Mountains</i></p>

<div class="spacer"></div>

Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<div class="content_container">
<img class="logo" src="media/logo.png" alt="Mount Fsuvius">
<p><i>The Sierra Mist Edition</i></p>
<p>Mtn Dew Edition: <i>As Refreshing As The Rocky Mountains</i></p>

<div class="spacer"></div>

Expand All @@ -33,4 +33,4 @@

<script src="toast.js"></script>
<script src="index.js"></script>
</html>
</html>
Binary file modified src/main/resources/static/media/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/media/background.xcf
Binary file not shown.
Binary file modified src/main/resources/static/media/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/main/resources/static/media/logo.xcf
Binary file not shown.
34 changes: 12 additions & 22 deletions src/main/resources/static/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

/* ===== GENERAL ===== */
body {
font-family: "Open Sans", Verdana, sans-serif;
font-family: Comic Sans MS, "Open Sans", Verdana, sans-serif;
font-size: 16px;
background-color: rgb(180, 205, 225);
color: black;
color: #ff0;
padding: 0;
margin: 0;
background-image: url("media/background.jpg");
Expand All @@ -36,33 +36,23 @@ button {
font: inherit;
margin: 0px 0px;
padding: 4px 8px;
border: 1px solid black;
color: black;
border: 1px solid #ff0;
color: #ff0;
background: none;
transition-duration: 200ms;
}

button:hover {
background: black;
color: white;
background: #ff0;
color: #f0f;
}

.name_field {
.name_field, .balance_field {
font: inherit;
width: 250px;
margin: 8px 0;
border: 1px solid black;
padding: 4px;
overflow-x: scroll;
overflow-y: hidden;
background: none;
}

.balance_field {
font: inherit;
width: 100px;
margin: 8px 0;
border: 1px solid black;
border: 1px solid #ff0;
color: #ff0;
padding: 4px;
overflow-x: scroll;
overflow-y: hidden;
Expand All @@ -73,8 +63,8 @@ button:hover {
width: 800px;
padding: 24px;
margin: 100px auto;
background: rgba(255,255,255,0.7);
box-shadow: 3px 3px 5px rgba(0,0,0,0.5);
background: #f0f9;
box-shadow: 3px 3px 5px #ff07;
}

/* ===== Navbar ===== */
Expand Down Expand Up @@ -175,4 +165,4 @@ button:hover {
padding: 0px 12px 0px 0px;
margin: 0;
width: 100px;
}
}
Loading