switch back to material with smaller font

Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
Adam Warner
2018-01-01 19:28:25 +00:00
parent 7a3fdfc8b9
commit 959458a2a3
4 changed files with 24 additions and 6 deletions

17
docs/extra.css Normal file
View File

@@ -0,0 +1,17 @@
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,700,700i');
.md-nav {
font-size: 14px;
line-height: 1.4;
}
.md-typeset {
font-size: 14px;
line-height: 1.5;
}
body, input {
font-family: "Source Sans Pro", "Roboto","Helvetica Neue",Helvetica,Arial,sans-serif;
color: black;
}
code {
display: inline-block;
white-space: pre-wrap;
}

View File

@@ -1,21 +1,21 @@
## One-Step Automated Install
# One-Step Automated Install
Those who want to get started quickly and conveniently, may install Pi-hole using the following command:
```BASH
curl -sSL https://install.pi-hole.net | bash
```
## Alternative Install Methods
# Alternative Install Methods
[Piping to `bash` is controversial](https://pi-hole.net/2016/07/25/curling-and-piping-to-bash), as it prevents you from [reading code that is about to run](https://github.com/pi-hole/pi-hole/blob/master/automated%20install/basic-install.sh) on your system. Therefore, we provide these alternative installation methods which allow code review before installation:
### Method 1: Clone our repository and run
#### Method 1: Clone our repository and run
```BASH
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
cd "Pi-hole/automated install/"
sudo bash basic-install.sh
```
### Method 2: Manually download the installer and run
#### Method 2: Manually download the installer and run
```BASH
wget -O basic-install.sh https://install.pi-hole.net
sudo bash basic-install.sh

View File

@@ -1,4 +1,4 @@
## Post-install: Make your network take advantage of Pi-hole
## Making your network take advantage of Pi-hole
Once the installer has been run, you will need to [configure your router to have **DHCP clients use Pi-hole as their DNS server**](https://discourse.pi-hole.net/t/how-do-i-configure-my-devices-to-use-pi-hole-as-their-dns-server/245) which ensures that all devices connecting to your network will have content blocked without any further intervention.

View File

@@ -6,7 +6,7 @@ repo_name: pi-hole/docs
repo_url: https://github.com/pi-hole/docs
edit_uri: ../docs/edit/master/docs/
remote_branch: gh-pages
theme: readthedocs
theme: material
pages:
- 'Support': 'index.md'
- 'Getting Started':
@@ -28,3 +28,4 @@ extra:
link: https://pi-hole.net
- type: github-alt
link: https://github.com/pi-hole
extra_css: [extra.css]