diff --git a/src/main/webapp/css/new-life-songs.scss b/src/main/webapp/css/new-life-songs.scss
index 6799787..cdf5b82 100644
--- a/src/main/webapp/css/new-life-songs.scss
+++ b/src/main/webapp/css/new-life-songs.scss
@@ -6,52 +6,127 @@
$dark: #333;
+$monoFont: 'Anonymous Pro';
+$headFont: 'Roboto Condensed';
+$bodyFont: 'Cantarell';
+
@import "forSize.mixin.scss";
@import "reset.scss";
body {
color: $dark;
- font-family: Cantarell;
- margin: 2rem auto;
- width: 60rem; }
+ font-family: $bodyFont; }
header {
- position: relative;
- & > h1, & > h2 {
- font-family: "Roboto Condensed";
- margin-bottom: 1.5em; }
-
- nav {
- position: absolute;
- top: 0;
- right: 0;
-
- ul {
- list-style: none;
-
- li {
- display: block;
- float: right;
- padding: 0.4rem 0.6rem;
+ & > h1 > a {
+ color: $dark;
+ text-decoration: none; }
- a {
- color: $dark;
- display: block;
- padding: 0.1rem 0.4rem;
- text-decoration: none; }
+ &> h1, & > h2 { font-family: $headFont; }
- a:hover {
- background-color: $dark;
- border-radius: 3px;
- color: white;
- }
- } } } }
+ nav > ul > li > a {
+ color: $dark;
+ display: block;
+ padding: 0.1rem 0.4rem;
+ text-decoration: none;
+
+ &:hover, &.current {
+ background-color: $dark;
+ border-radius: 3px;
+ color: white; } }
+}
+
+p { margin-top: 1rem; }
+
+section {
+ margin-bottom: 2rem;
+
+ & > ul {
+ padding: 1rem 2rem;
+
+ a { color: $dark; }
+ a:visited { color: $dark; } } }
+
+section#welcome { padding: 1rem; }
table {
- th { font-family: "Roboto Condensed"; }
+ th { font-family: $headFont; }
td a {
color: $dark;
display: block;
text-decoration: none; } }
+
+.api-doc {
+ pre, code {
+ background-color: #EEE;
+ font-family: $monoFont; }
+
+ pre { margin-left: 1rem; }
+
+ h3 { margin: 1rem 0; }
+
+ dl {
+ margin: 1rem;
+
+ & > dt {
+ background-color: #EEE;
+ font-family: $monoFont;
+ font-weight: bold; }
+
+ & > dd { padding: 0 0 0.5rem 1rem; } } }
+
+@include forSize(notSmall) {
+
+ body { margin: 2rem auto; }
+
+ header {
+ position: relative;
+
+ & > h1, & > h2 { margin-bottom: 1.5em; }
+
+ nav {
+ position: absolute;
+ top: 0;
+ right: 0;
+
+ ul {
+ list-style: none;
+
+ li {
+ display: block;
+ float: right;
+ padding: 0.4rem 0.6rem;
+
+ } } } }
+
+}
+
+@include forSize(small) {
+ header {
+ margin-bottom: 1rem;
+ text-align: center;
+
+ & > h2 { display: none; }
+ & > h2.song-name, & > h2.service-date { display: block; }
+
+ & > nav > ul > li {
+ display: inline-block;
+ font-size: 125%;
+ width: 32%;
+ } }
+
+ section { font-size: 125%; }
+
+ .dataTables_length { display: none; }
+
+ table#songs-table {
+ td.artists, th.artists { display: none; } }
+
+ .not-small { display: none; }
+}
+
+@include forSize(medium) { body { width: 40rem; } }
+
+@include forSize(large) { body { width: 60rem; } }
diff --git a/src/main/webapp/index.html b/src/main/webapp/index.html
new file mode 100644
index 0000000..e9d2d03
--- /dev/null
+++ b/src/main/webapp/index.html
@@ -0,0 +1,36 @@
+
+
+
+
+
+
+
+
+ New Life Songs Database
+
+
+
+
+
+
+ This is Jonathan's database of worship songs performed at New Life
+ Austin. Please feel free to take a look around:
+
+
+ If you run across any problems, feel free to send me an email at
+ jdbernard@gmail.com
+
+
+
+
diff --git a/src/main/webapp/service/index.gsp b/src/main/webapp/service/index.gsp
index 4f0a284..e51a252 100644
--- a/src/main/webapp/service/index.gsp
+++ b/src/main/webapp/service/index.gsp
@@ -18,6 +18,8 @@ if (!service) { response.sendError(response.SC_NOT_FOUND); return }
+
+
<%= service.@date.toString("yyyy-MM-dd")
@@ -28,7 +30,8 @@ if (!service) { response.sendError(response.SC_NOT_FOUND); return }
-
+
+
@@ -48,44 +51,37 @@ if (!service) { response.sendError(response.SC_NOT_FOUND); return }
Performances
diff --git a/src/main/webapp/services/index.gsp b/src/main/webapp/services/index.gsp
index 68248fb..d279599 100644
--- a/src/main/webapp/services/index.gsp
+++ b/src/main/webapp/services/index.gsp
@@ -9,6 +9,8 @@ songsDB = NLSongsContext.songsDB
+
+
Services - New Life Songs Database
@@ -18,26 +20,26 @@ songsDB = NLSongsContext.songsDB
-
+
- New Life Songs
+
Services
- Date |
- Service Type |
+ Date |
+ Service Type |
<% songsDB.findAllServices().sort { it.date }.reverse().each { service -> %>
@@ -45,15 +47,16 @@ songsDB = NLSongsContext.songsDB
service.@date.toString("yyyy-MM-dd") %>
<%= service.serviceType.displayName %> | <% } %>
-
+
diff --git a/src/main/webapp/song/index.gsp b/src/main/webapp/song/index.gsp
index a73e65f..9ebba64 100644
--- a/src/main/webapp/song/index.gsp
+++ b/src/main/webapp/song/index.gsp
@@ -18,6 +18,8 @@ if (!song) { response.sendError(response.SC_NOT_FOUND); return }
+
+
<%= song.name %> - New Life Songs Database
@@ -27,14 +29,15 @@ if (!song) { response.sendError(response.SC_NOT_FOUND); return }
-
+
+
- New Life Songs
- <%= song.name %>
<%
+
+ <%= song.name %>
<%
if (song.artists.findAll().size() > 0) {
%>by <%= song.artists.join(", ") %>
<% } %>
@@ -48,48 +51,37 @@ if (!song) { response.sendError(response.SC_NOT_FOUND); return }
Performances
diff --git a/src/main/webapp/songs/index.gsp b/src/main/webapp/songs/index.gsp
index 9cca315..4fcd5cf 100644
--- a/src/main/webapp/songs/index.gsp
+++ b/src/main/webapp/songs/index.gsp
@@ -8,6 +8,8 @@ songsDB = NLSongsContext.songsDB
+
+
Songs - New Life Songs Database
@@ -17,41 +19,42 @@ songsDB = NLSongsContext.songsDB
-
+
- Name |
- Artists |
+ Name |
+ Artists |
<% songsDB.findAllSongs().sort { it.name }.each { song -> %>
- <%= song.name %> |
- <%= song.artists.join(", ") %> |
<% } %>
+ <%= song.name %> |
+ <%= song.artists.join(", ") %> |
<% } %>
-
+