More images and quotes

This commit is contained in:
Dave R 2018-08-13 17:06:39 +01:00
parent b8814e1bde
commit ed14e41702
7 changed files with 16 additions and 3 deletions

View File

@ -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 */

BIN
assets/img/16.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 KiB

BIN
assets/img/17.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

BIN
assets/img/18.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 253 KiB

BIN
assets/img/19.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 326 KiB

BIN
assets/img/20.jpeg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 360 KiB

View File

@ -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 dont create heroes. It is during the hard times when the hero within us is revealed.', author: 'Bob Riley'}
{ text: 'Hard times dont 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: 'Dont wish it were easier. Wish you were better.', author: 'Jim Rohn'}
],
quote = pickFromArray(quotes);