Commit stuff I updated

This commit is contained in:
Dave R 2018-08-09 15:02:06 +01:00
parent b0d0e743cb
commit c46a4d0c03
2 changed files with 8 additions and 3 deletions

View File

@ -99,6 +99,8 @@ time {
.quote cite { font-size: 83.33%; }
/* Font */
/* roboto-regular - latin */
@font-face {
font-family: 'Roboto';
@ -111,4 +113,4 @@ time {
url('../fonts/roboto-v18-latin-regular.woff') format('woff'), /* Modern Browsers */
url('../fonts/roboto-v18-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
url('../fonts/roboto-v18-latin-regular.svg#Roboto') format('svg'); /* Legacy iOS */
}
}

View File

@ -96,7 +96,11 @@ function setRandomQuote () {
let quotes = [
{ text: 'Time goes on. So whatever youre going to do, do it. Do it now. Dont wait.', author: 'Robert De Niro' }
{ text: 'Time goes on. So whatever youre going to do, do it. Do it now. Dont wait.', author: 'Robert De Niro' },
{ text: 'All our dreams can come true, if we have the courage to pursue them.', author: 'Walt Disney' },
{ text: 'It does not matter how slowly you go as long as you do not stop.', author: 'Confucius'},
{ text: 'Believe in yourself. You are braver than you think, more talented than you know, and capable of more than you imagine.', author: 'Roy T. Bennett'},
{ text: 'If you believe it will work out, youll see opportunities. If you believe it wont, you will see obstacles', author: 'Wayne Dyer'}
],
quote = pickFromArray(quotes);
@ -109,7 +113,6 @@ function setRandomQuote () {
};
function setTime () {
// we need to save Date() here because we use...