diff --git a/public/assets/css/general.css b/public/assets/css/general.css index f2314d8c..7d9c3fae 100644 --- a/public/assets/css/general.css +++ b/public/assets/css/general.css @@ -124,7 +124,7 @@ p, h3 { } .blue { - color: dodgerblue; + color: #4156C5; } /* TOOL TIPS */ @@ -169,6 +169,24 @@ a, a:visited { text-decoration: none; } +.link--primary, .link--primary:visited { + color: #4156C5; +} + +.link--nav { + color: black; + border-bottom: 2px solid white; +} + +.link--nav:hover { + color: #4156C5; +} + +.link--nav-active { + color: #4156C5; + border-bottom: 2px solid #4156C5; +} + /* COLUMNS AND ROWS */ .row { @@ -206,6 +224,10 @@ a, a:visited { padding-bottom: 0px; } +.row--no-right { + padding-right: 0px; +} + .column { display: inline-block; padding: 0px; @@ -347,7 +369,7 @@ option { } .blue-underlined-pointer { - color: dodgerblue; + color: #4156C5; text-decoration: underline; cursor: pointer; } @@ -399,13 +421,13 @@ button { } .button--primary:hover { - border: 1px solid dodgerblue; + border: 1px solid #4156C5; color: white; - background-color: dodgerblue; + background-color: #4156C5; } .button--primary:active{ - border: 1px solid dodgerblue; + border: 1px solid #4156C5; color: white; background-color: white; } @@ -447,23 +469,6 @@ table { .nav-bar-link { padding: 1.5rem; display: inline-block; - color: black; - font-weight: normal; - color: black; - border-bottom: 2px solid white; -} - -.nav-bar-link--last { - padding-right: 0px; -} - -.nav-bar-link:hover { - color: dodgerblue; -} - -.nav-bar-link--active { - color: dodgerblue; - border-bottom: 2px solid dodgerblue; } /* PUBLISH FORM */ @@ -475,7 +480,7 @@ table { } .dropzone:hover, .dropzone--drag-over { - border: 2px dashed dodgerblue; + border: 2px dashed #4156C5; cursor: pointer; } @@ -519,43 +524,33 @@ table { /* item lists */ -.content-list-item { - -} - .content-list-item-asset { width: 90%; } -.content-list-item-link { +/* progress bar */ +.progress-bar--inactive { + color: lightgrey; +} + +.progress-bar--active { + color: #4156C5; } /* other */ -.toggle-link { - float: right; -} - .wrap-words { word-wrap: break-word; } #new-release-banner { font-size: small; - background-color: dodgerblue; + background-color: #4156C5; color: white; text-align: center; } -.progress-bar--inactive { - color: lightgrey; -} - -.progress-bar--active { - color: dodgerblue; -} - /* ---- grid items ---- */ .grid-item { diff --git a/public/assets/css/mediaQueries.css b/public/assets/css/mediaQueries.css index 18297171..1701f711 100644 --- a/public/assets/css/mediaQueries.css +++ b/public/assets/css/mediaQueries.css @@ -32,7 +32,7 @@ height: 1rem; } - .nav-bar-link { + .link--nav { font-size: small; padding: 1rem 0.5rem 1rem 0.5rem; } @@ -86,7 +86,7 @@ @media (max-width: 360px) { - .nav-bar-link { + .link--nav { font-size: x-small; } diff --git a/views/about.handlebars b/views/about.handlebars index d6294624..db20bad9 100644 --- a/views/about.handlebars +++ b/views/about.handlebars @@ -2,18 +2,18 @@

Spee.ch is an open-source project. Please contribute to the existing site, or fork it and make your own.

-

TWITTER

-

GITHUB

-

DISCORD CHANNEL

-

DOCUMENTATION

+

TWITTER

+

GITHUB

+

DISCORD CHANNEL

+

DOCUMENTATION

-

Spee.ch is a media-hosting site that reads and publishes content from the LBRY blockchain.

+

Spee.ch is a media-hosting site that reads and publishes content from the LBRY blockchain.

Spee.ch is a hosting service, but with the added benefit that it stores your content on a decentralized network of computers -- the LBRY network. This means that your images are stored in multiple locations without a single point of failure.

Contribute

-

If you have an idea for your own spee.ch-like site on top of LBRY, fork our github repo and go to town!

-

If you want to improve spee.ch, join our slack channel or solve one of our github issues.

+

If you have an idea for your own spee.ch-like site on top of LBRY, fork our github repo and go to town!

+

If you want to improve spee.ch, join our discord channel or solve one of our github issues.

diff --git a/views/channel.handlebars b/views/channel.handlebars index d32ee3de..9ae50276 100644 --- a/views/channel.handlebars +++ b/views/channel.handlebars @@ -8,21 +8,21 @@
- First [1] + First [1]
{{#if this.previousPage}} - Previous + Previous {{else}} Previous {{/if}} | {{#if this.nextPage}} - Next + Next {{else}} Next {{/if}}
- Last [{{this.totalPages}}] + Last [{{this.totalPages}}]
diff --git a/views/fourOhFour.handlebars b/views/fourOhFour.handlebars index c0c3be7d..eeb979ac 100644 --- a/views/fourOhFour.handlebars +++ b/views/fourOhFour.handlebars @@ -1,4 +1,4 @@

404: Not Found

-

That page does not exist. Return home.

+

That page does not exist. Return home.

diff --git a/views/index.handlebars b/views/index.handlebars index 4cbd53da..05334ec7 100644 --- a/views/index.handlebars +++ b/views/index.handlebars @@ -88,10 +88,10 @@ /* socket.io message listeners */ socket.on('publish-update', function(msg){ updatePublishStatus(`

${msg}

`); - updateUploadPercent(`

Curious what magic is happening here? learn more

`); + updateUploadPercent(`

Curious what magic is happening here? Learn more.

`); }); socket.on('publish-failure', function(msg){ - updatePublishStatus('

--(✖╭╮✖)→

' + JSON.stringify(msg) + '

For help, post the above error text in the #speech channel on the lbry slack'); + updatePublishStatus('

--(✖╭╮✖)→

' + JSON.stringify(msg) + '

For help, post the above error text in the #speech channel on the lbry discord'); hidePublishProgressBar(); hideUploadPercent(); }); @@ -99,7 +99,7 @@ const showUrl = msg.result.claim_id + "/" + msg.name; // update status updatePublishStatus('

Your publish is complete! You are being redirected to it now.

'); - updateUploadPercent('

If you do not get redirected, click here.

') + updateUploadPercent('

If you do not get redirected, click here.

') // redirect the user window.location.href = showUrl; }); diff --git a/views/login.handlebars b/views/login.handlebars index b187bf03..7f278ed2 100644 --- a/views/login.handlebars +++ b/views/login.handlebars @@ -1,7 +1,7 @@
-

Channels allow you to publish and group content under an identity. You can create a channel for yourself, or share one with like-minded friends. You can create 1 channel, or 100, so whether you're documenting a hike around town, or making a public repository for cat gifs (password: '1234'), try creating a channel for it!

+

Channels allow you to publish and group content under an identity. You can create a channel for yourself, or share one with like-minded friends. You can create 1 channel, or 100, so whether you're documenting a hike around town, or making a public repository for cat gifs (password: '1234'), try creating a channel for it!

diff --git a/views/noChannel.handlebars b/views/noChannel.handlebars index 90487fff..19476180 100644 --- a/views/noChannel.handlebars +++ b/views/noChannel.handlebars @@ -1,5 +1,5 @@

No Channel

There are no published channels matching your url

-

If you think this message is an error, contact us in the LBRY Discord!

+

If you think this message is an error, contact us in the LBRY Discord!

diff --git a/views/noClaim.handlebars b/views/noClaim.handlebars index c68c1cb5..6cc37965 100644 --- a/views/noClaim.handlebars +++ b/views/noClaim.handlebars @@ -1,5 +1,5 @@

No Claims

-

There are no free assets at that claim. You should publish one at spee.ch.

+

There are no free assets at that claim. You should publish one at spee.ch.

NOTE: it is possible your claim was published, but it is still being processed by the blockchain

diff --git a/views/partials/assetInfo.handlebars b/views/partials/assetInfo.handlebars index d28321fc..35611db6 100644 --- a/views/partials/assetInfo.handlebars +++ b/views/partials/assetInfo.handlebars @@ -5,7 +5,7 @@
diff --git a/views/partials/gridItem.handlebars b/views/partials/gridItem.handlebars index 4a4331b1..50a6189a 100644 --- a/views/partials/gridItem.handlebars +++ b/views/partials/gridItem.handlebars @@ -1,7 +1,7 @@ {{#ifConditional this.contentType '===' 'video/mp4'}} - + {{else}} - + {{/ifConditional}} \ No newline at end of file diff --git a/views/partials/navBar.handlebars b/views/partials/navBar.handlebars index 49e7219f..4535c01b 100644 --- a/views/partials/navBar.handlebars +++ b/views/partials/navBar.handlebars @@ -24,28 +24,28 @@ Open-source, decentralized image and video sharing.
\ No newline at end of file diff --git a/views/partials/publishForm-Details.handlebars b/views/partials/publishForm-Details.handlebars index d1606ca6..9f085064 100644 --- a/views/partials/publishForm-Details.handlebars +++ b/views/partials/publishForm-Details.handlebars @@ -1,6 +1,6 @@
diff --git a/views/partials/publishForm-Submit.handlebars b/views/partials/publishForm-Submit.handlebars index 13b6cfc1..486e8841 100644 --- a/views/partials/publishForm-Submit.handlebars +++ b/views/partials/publishForm-Submit.handlebars @@ -6,5 +6,5 @@
-

By clicking 'Upload', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. [Read more]

+

By clicking 'Upload', you affirm that you have the rights to publish this content to the LBRY network, and that you understand the properties of publishing it to a decentralized, user-controlled network. Read more.

diff --git a/views/partials/releaseBanner.handlebars b/views/partials/releaseBanner.handlebars index c2527bfe..b3ad4d74 100644 --- a/views/partials/releaseBanner.handlebars +++ b/views/partials/releaseBanner.handlebars @@ -1,3 +1,3 @@
- Hi there! You've stumbled upon the new version of spee<h, launching soon! Send us your feedback in our slack + Hi there! You've stumbled upon the new version of spee<h, launching soon! Send us your feedback in our discord
\ No newline at end of file diff --git a/views/showLite.handlebars b/views/showLite.handlebars index ce807ced..42c33441 100644 --- a/views/showLite.handlebars +++ b/views/showLite.handlebars @@ -13,7 +13,7 @@ {{/ifConditional}}
- hosted via spee<h + hosted via spee<h {{else}} {{fileInfo.fileName}}