diff --git a/view/page/cli.php b/view/page/cli.php
deleted file mode 100644
index ec433529..00000000
--- a/view/page/cli.php
+++ /dev/null
@@ -1,71 +0,0 @@
-
- false]) ?>
-
-
-
LBRY for CLI
-
- This is a pre-release, alpha version of LBRY. It is only designed to show what LBRY makes possible.
- Expect future releases to involve a full network reboot of both credits and metadata.
-
-
-
-
Install
-
-
-
Linux
-
-
The Brave and Lazy
-
- - Make a folder called
lbry
where you want everything to reside.
- - Download and run this shell script from that folder.
-
-
The Shrewd and Frivolous
-
- - Clone and follow the build steps for lbrycrd, a miner for LBRY credits.
- - Clone and follow the build steps for lbry, a console based application for using the LBRY protocol.
-
-
-
-
-
OS X
-
-
OS X Programmers
-
You can attempt to follow the Linux build instructions.
-
Everyone Else
-
Sorry, we do not have an OS X version of LBRY other than source. We promise one will exist sooner rather than later.
-
-
-
-
Test
-
To ensure LBRY is installed co:
-
- get wonderfullife
-
-
In the graphical version, this can accessed by typing "wonderfullife" into the address bar and pressing "Go". In the console version, select "[7] Add a stream from a short name".
-
-
Feedback
-
We've prepared a short form for feedback regarding your LBRY experience, available below.
-
We're providing 10,000 LBC (~$100) to the first 500 people who download LBRY and submit their feedback.
-
Provide Your Feedback
-
-
-
-
-
-
-
-
-
Windows
-
- If you have a standard Windows install, it will insinuate several times that you are an idiot for following the steps below.
- And perhaps you are, but not because this code is dangerous or will harm your computer in any way. Future releases will involve more reputable install steps.
-
-
- - Download this ZIP file.
- - There is no installer. Extract the ZIP to wherever you want the program to reside, such as
Program Files
.
- - Run lbry.exe.
-
-
- */
\ No newline at end of file
diff --git a/view/page/linux.php b/view/page/linux.php
index 3ef350ed..167e10fb 100644
--- a/view/page/linux.php
+++ b/view/page/linux.php
@@ -7,8 +7,18 @@
For the Efficient and Lazy
- - Make a folder called
lbry
where you want everything to reside.
- - Download and run this script from that folder.
+ - Open the terminal.
+ - Go to the directory you want to install in. If you're unsure, run
cd ~
.
+ -
+
+ mkdir -p lbry
+ cd lbry
+ wget https://raw.githubusercontent.com/lbryio/lbry-setup/master/lbry_setup.sh
+ chmod +x lbry_setup.sh
+ ./lbry_setup.sh
+ lbrynet-console
+
+
diff --git a/web/scss/_basic.scss b/web/scss/_basic.scss
index 03224471..d11cea4a 100644
--- a/web/scss/_basic.scss
+++ b/web/scss/_basic.scss
@@ -32,7 +32,7 @@ body
}
iframe, img { max-width: 100%; }
iframe { margin: 0 auto; display: block; }
-code { font-family: monospace; }
+code { font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, monospace, serif; }
h1, h2, h3
{
diff --git a/web/scss/_code.scss b/web/scss/_code.scss
new file mode 100644
index 00000000..e448beb8
--- /dev/null
+++ b/web/scss/_code.scss
@@ -0,0 +1,25 @@
+@import "global";
+.code-bash
+{
+ -webkit-user-select: text;
+ -moz-user-select: text;
+ -ms-user-select: text;
+ user-select: text;
+
+ word-wrap: break-word;
+ .sy0 { display: inline-block; } //will allow wrapping here
+
+ font-size: 0.75em;
+ background-color: #F8F8F8;
+ border: 1px solid #ddd;
+ padding: $spacing-vertical / 2;
+
+ .code-bash-kw1 {color: #c20cb9; font-weight: bold;}
+ .code-bash-kw2 {color: #7a0874; font-weight: bold; }
+ .sy0 {color: #000000; font-weight: bold; }
+
+ > code
+ {
+ display: block;
+ }
+}
\ No newline at end of file
diff --git a/web/scss/_cover.scss b/web/scss/_cover.scss
index df81210e..bc92be7e 100644
--- a/web/scss/_cover.scss
+++ b/web/scss/_cover.scss
@@ -2,7 +2,6 @@
.cover
{
- @box-sizing(border-box);
width: 100%;
.meta-large [class*="icon"]
{
@@ -12,7 +11,6 @@
}
.cover-simple
{
- @box-sizing(border-box);
width: 100%;
}
@media (max-width: $mobile-width-threshold) {
diff --git a/web/scss/_grid.scss b/web/scss/_grid.scss
index b51bcc6e..cdaa4213 100644
--- a/web/scss/_grid.scss
+++ b/web/scss/_grid.scss
@@ -26,7 +26,6 @@ $gutter_fluid: 4;
float: left;
width: 100%;
margin-left: 1% * $gutter_fluid;
- @box-sizing(border-box);
&:first-child
{
margin-left: 0;
@@ -53,7 +52,6 @@ $gutter_fluid: 4;
width: 100%;
> [class*="span"] {
float: left;
- @box-sizing(border-box);
}
}
diff --git a/web/scss/all.scss b/web/scss/all.scss
index 3b44fedb..1aef58d1 100644
--- a/web/scss/all.scss
+++ b/web/scss/all.scss
@@ -9,4 +9,5 @@
@import "cover";
@import "hero";
@import "header";
-@import "sale";
\ No newline at end of file
+@import "sale";
+@import "code";
\ No newline at end of file