aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Powers <markppowers0@gmail.com>2020-04-19 13:01:19 -0500
committerMark Powers <markppowers0@gmail.com>2020-04-19 13:01:19 -0500
commitd4878655be6ae6b88bdffc1afe2ff953119b7916 (patch)
tree484144b84de8f79089f0f54b833cf0bd63d22770
parentde1eda15955f5d6ee311475355b886214d43f53c (diff)
Add bunny styling
-rw-r--r--src/quiz-bunny/server.js1
-rw-r--r--src/quiz-bunny/static/bunny.jpgbin0 -> 457095 bytes
-rw-r--r--src/quiz-bunny/static/styles.css19
3 files changed, 17 insertions, 3 deletions
diff --git a/src/quiz-bunny/server.js b/src/quiz-bunny/server.js
index 3a36baf..80c50c3 100644
--- a/src/quiz-bunny/server.js
+++ b/src/quiz-bunny/server.js
@@ -7,6 +7,7 @@ function setUpRoutes(server, models, jwtFunctions, database) {
server.get('/quiz-bunny', (req, res) => res.sendFile(__dirname + "/index.html"))
server.get('/quiz-bunny/main.js', (req, res) => res.sendFile(__dirname + "/static/main.js"))
server.get('/quiz-bunny/styles.css', (req, res) => res.sendFile(__dirname + "/static/styles.css"))
+ server.get('/quiz-bunny/bunny.jpg', (req, res) => res.sendFile(__dirname + "/static/bunny.jpg"))
// a list of games
var games = []
diff --git a/src/quiz-bunny/static/bunny.jpg b/src/quiz-bunny/static/bunny.jpg
new file mode 100644
index 0000000..9173a51
--- /dev/null
+++ b/src/quiz-bunny/static/bunny.jpg
Binary files differ
diff --git a/src/quiz-bunny/static/styles.css b/src/quiz-bunny/static/styles.css
index e128102..45da568 100644
--- a/src/quiz-bunny/static/styles.css
+++ b/src/quiz-bunny/static/styles.css
@@ -1,3 +1,13 @@
+body {
+ background-image: url("/quiz-bunny/bunny.jpg");
+ background-position: center;
+ background-repeat: no-repeat;
+}
+h1, h2, h3, h4, li, span {
+ text-shadow: 0px 0px 5px #000;
+ color: white;
+}
+
.center{
margin: auto;
width: 350px;
@@ -18,17 +28,20 @@ input[type=button]{
background-color: coral;
color: white;
white-space: normal;
+ box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
}
input[type=button]:disabled {
color: #eeeeee;
background-color: #dddddd;
}
input[type=button]:disabled:hover {
- box-shadow: none;
- cursor: default
+ box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
+ cursor: default;
+ background-color: #dddddd;
}
input[type=button]:hover{
- box-shadow: 0 2px 5px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19)
+ box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
+ background-color: rgb(255, 179, 151);
}
span {
margin-right: 1em;