mirror of
https://github.com/pi-hole/docs.git
synced 2025-12-20 11:18:37 +00:00
switch back to material with smaller font
Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
17
docs/extra.css
Normal file
17
docs/extra.css
Normal 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;
|
||||||
|
}
|
||||||
@@ -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:
|
Those who want to get started quickly and conveniently, may install Pi-hole using the following command:
|
||||||
|
|
||||||
```BASH
|
```BASH
|
||||||
curl -sSL https://install.pi-hole.net | 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:
|
[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
|
```BASH
|
||||||
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
|
git clone --depth 1 https://github.com/pi-hole/pi-hole.git Pi-hole
|
||||||
cd "Pi-hole/automated install/"
|
cd "Pi-hole/automated install/"
|
||||||
sudo bash basic-install.sh
|
sudo bash basic-install.sh
|
||||||
```
|
```
|
||||||
|
|
||||||
### Method 2: Manually download the installer and run
|
#### Method 2: Manually download the installer and run
|
||||||
```BASH
|
```BASH
|
||||||
wget -O basic-install.sh https://install.pi-hole.net
|
wget -O basic-install.sh https://install.pi-hole.net
|
||||||
sudo bash basic-install.sh
|
sudo bash basic-install.sh
|
||||||
|
|||||||
@@ -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.
|
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.
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ repo_name: pi-hole/docs
|
|||||||
repo_url: https://github.com/pi-hole/docs
|
repo_url: https://github.com/pi-hole/docs
|
||||||
edit_uri: ../docs/edit/master/docs/
|
edit_uri: ../docs/edit/master/docs/
|
||||||
remote_branch: gh-pages
|
remote_branch: gh-pages
|
||||||
theme: readthedocs
|
theme: material
|
||||||
pages:
|
pages:
|
||||||
- 'Support': 'index.md'
|
- 'Support': 'index.md'
|
||||||
- 'Getting Started':
|
- 'Getting Started':
|
||||||
@@ -28,3 +28,4 @@ extra:
|
|||||||
link: https://pi-hole.net
|
link: https://pi-hole.net
|
||||||
- type: github-alt
|
- type: github-alt
|
||||||
link: https://github.com/pi-hole
|
link: https://github.com/pi-hole
|
||||||
|
extra_css: [extra.css]
|
||||||
|
|||||||
Reference in New Issue
Block a user