diff --git a/assets/css/index.css b/assets/css/index.css index 1fa9fb65..04169978 100644 --- a/assets/css/index.css +++ b/assets/css/index.css @@ -24,7 +24,7 @@ body { font-family: 'Roboto', sans-serif; color: white; -moz-user-select: none; /* Firefox */ - user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */ + user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */ } /* BACKGROUND CLASSES */ @@ -44,6 +44,11 @@ body { .canyon { background-image: url('../img/13.jpeg'); } .rose { background-image: url('../img/14.jpeg'); } .forest { background-image: url('../img/15.jpeg'); } +.lightbulb { background-image: url('../img/16.jpeg'); } +.clouds { background-image: url('../img/17.jpeg'); } +.dj { background-image: url('../img/18.jpeg'); } +.keyboard { background-image: url('../img/19.jpeg'); } +.table { background-image: url('../img/20.jpeg'); } /* TEXT SHADOW */ diff --git a/assets/img/16.jpeg b/assets/img/16.jpeg new file mode 100644 index 00000000..cf49cf05 Binary files /dev/null and b/assets/img/16.jpeg differ diff --git a/assets/img/17.jpeg b/assets/img/17.jpeg new file mode 100644 index 00000000..f3a10590 Binary files /dev/null and b/assets/img/17.jpeg differ diff --git a/assets/img/18.jpeg b/assets/img/18.jpeg new file mode 100644 index 00000000..11e6025c Binary files /dev/null and b/assets/img/18.jpeg differ diff --git a/assets/img/19.jpeg b/assets/img/19.jpeg new file mode 100644 index 00000000..5ec60ed9 Binary files /dev/null and b/assets/img/19.jpeg differ diff --git a/assets/img/20.jpeg b/assets/img/20.jpeg new file mode 100644 index 00000000..6cfb8a03 Binary files /dev/null and b/assets/img/20.jpeg differ diff --git a/assets/js/index.js b/assets/js/index.js index d508090b..9dc122c1 100644 --- a/assets/js/index.js +++ b/assets/js/index.js @@ -74,7 +74,12 @@ function setRandomBackground () { 'desert', 'canyon', 'rose', - 'forest' + 'forest', + 'lightbulb', + 'clouds', + 'dj', + 'keyboard', + 'table' ], currentBackgroundClass = pickFromArray(backgroundClasses); @@ -113,7 +118,10 @@ function setRandomQuote () { { text: 'Your true success in life begins only when you make the commitment to become excellent at what you do.', author: 'Brian Tracy'}, { text: 'Believe in yourself, take on your challenges, dig deep within yourself to conquer fears. Never let anyone bring you down. You got to keep going.', author: 'Chantal Sutherland'}, { text: 'Too many of us are not living our dreams because we are living our fears.', author: 'Les Brown'}, - { text: 'Hard times don’t create heroes. It is during the hard times when the ‘hero’ within us is revealed.', author: 'Bob Riley'} + { text: 'Hard times don’t create heroes. It is during the hard times when the ‘hero’ within us is revealed.', author: 'Bob Riley'}, + { text: 'If you can tune into your purpose and really align with it, setting goals so that your vision is an expression of that purpose, then life flows much more easily.', author: 'Jack Canfield'}, + { text: 'Whatever the mind can conceive and believe, it can achieve.', author: 'Napoleon Hill'}, + { text: 'Don’t wish it were easier. Wish you were better.', author: 'Jim Rohn'} ], quote = pickFromArray(quotes);